Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
117061 | 谢佳辰 | 14报数拿糖 | C++ | Output Limit Exceeded | 18 MS | 260 KB | 255 | 2025-04-13 14:59:04 |
#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; }