Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
127178 陶婉晴 14报数拿糖 C++ Accepted 1 MS 260 KB 218 2025-07-25 11:18:57

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; string a; int main(){ int n=0; for(int i=1;i<=100;i++){ n++; if(n==11){ n=1; } if(i%3!=0){ continue; } cout<<n<<" "; } return 0; }