| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 2735 | A班-袁誉晏 | 1加到多少才超过N | C++ | Wrong Answer | 0 | 1 MS | 268 KB | 180 | 2024-12-21 11:09:18 |
#include <bits/stdc++.h> using namespace std; int main() { int n,sum=0; cin>>n; for(int i=1;i<=n;i++) { if(i+i>n) { cout<<i; break; } } return 0; }