Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
64133 | 王一涵(吃土豆长大的马铃薯) | 递归求等差数列第n项的值 | C++ | Accepted | 0 MS | 244 KB | 113 | 2025-04-16 17:03:47 |
#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; cout<<2*x+1; return 0; }