| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 111833 | 樊梵 | 爬楼梯 | C++ | Wrong Answer | 66 | 0 MS | 252 KB | 159 | 2023-11-25 08:23:18 |
#include<bits/stdc++.h> using namespace std; int main() { int i,a,b,d[10005]; cin>>a; for(i=1;i<=a;i++) cin>>d[i]; cout<<a; return 0; }