QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#846367#9999. 好成绩huaxiamengjinAC ✓0ms3840kbC++14136b2025-01-07 07:38:352025-01-07 07:38:40

Judging History

你现在查看的是最新测评结果

  • [2025-01-07 07:38:40]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3840kb
  • [2025-01-07 07:38:35]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;

int main(){
	for(int i=0;i<=150;i++)
		if(i%3==2&&i%5==3&&i%7==6)printf("%d\n",i);
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3840kb

input:



output:

83

result:

ok single line: '83'