Submission #154697


Source Code Expand

#include<iostream>
#include<vector>
#include<algorithm>
#include<set>
#include<map>
#include<queue>
using namespace std;

int main(){
	int n;
	scanf("%d",&n);
	bool t=false;
	if(n%3==0)t=true;
	else {
		while(n>0){
			if(n%10==3)t=true;
			n/=10;
		}
	}

	if(t)printf("YES\n");
	else printf("NO\n");
}

Submission Info

Submission Time
Task A - 世界のFizzBuzz
User yokozuna57
Language C++11 (GCC 4.8.1)
Score 100
Code Size 323 Byte
Status AC
Exec Time 24 ms
Memory 928 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:11:16: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d",&n);
                ^

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 9
Set Name Test Cases
All test_1.txt, test_2.txt, test_3.txt, test_4.txt, test_5.txt, test_6.txt, test_7.txt, test_8.txt, test_9.txt
Case Name Status Exec Time Memory
sample_01.txt AC 19 ms 792 KB
sample_02.txt AC 22 ms 844 KB
sample_03.txt AC 21 ms 756 KB
test_1.txt AC 21 ms 796 KB
test_2.txt AC 20 ms 796 KB
test_3.txt AC 22 ms 928 KB
test_4.txt AC 21 ms 804 KB
test_5.txt AC 24 ms 768 KB
test_6.txt AC 22 ms 732 KB
test_7.txt AC 21 ms 812 KB
test_8.txt AC 21 ms 748 KB
test_9.txt AC 22 ms 716 KB