Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
117058 | 谢佳辰 | 14报数拿糖 | C++ | Output Limit Exceeded | 20 MS | 260 KB | 265 | 2025-04-13 14:55:15 |
#include <iostream> using namespace std; int main(){ int i,n=0; for(i=1;1<=100;i++){ n++; if(n==11){ n=1; } if(i%3!=0){ continue; } cout<<n<<endl; } return 0; }