Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128566 郑景文 14报数拿糖 C++ Wrong Answer 3 MS 260 KB 226 2025-08-18 14:06:31

Tests(0/1):


Code:

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


Run Info:

------Input------
0
------Answer-----
3 6 9 2 5 8 1 4 7 10 3 6 9 2 5 8 1 4 7 10 3 6 9 2 5 8 1 4 7 10 3 6 9
------Your output-----
3 3 6 6 9 9 2 12 5 15 8 18 1 21 4 24 7 27 10 30 3 33 6 36 9 39 2 42 5 45 8 48 1 51 4 54 7 57 10 60 3 63 6 66 9 69 2 72 5 75 8 78 1 81 4 84 7 87 10 90 3 93 6 96 9 99