Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
108788 | 常钰杰 | 14报数拿糖 | C++ | Presentation Error | 1 MS | 264 KB | 323 | 2025-01-22 09:39:13 |
#include<iostream> using namespace std; int main() { int n; n=0; for(int i=1;i<=100;i++) { n++; if(n==11) { n=1; } if(i%3!=0) { continue; } cout<<n<<" "<<endl; } return 0; }