#64

by asd

Submitted 4 years 2 months 1 day ago
Tue Feb 04 19:44:56 CST 2020
Judger: ZJS
Dataset Version: v0

31 ms / 6916 KB
Final 0
Problem: fun.resolution
Language: GNU C++ 11


#1

0ms / 6916KB / Wrong Answer
Input
0
Output
YES
Answer
1
Checker Information
Nazirin thinks your resolution may be too short? YES is found.

#2

31ms / 6916KB / Wrong Answer
Input
1
Output
YES
Answer
1
Checker Information
Nazirin thinks your resolution may be too short? YES is found.
#include <bits/stdc++.h>
using namespace std;
set<int> s={1, 2, 3, 5, 6, 9, 10, 13, 17 };
int main(){
	int x;
	while(scanf("%d",&x)!=EOF){
		puts("YES");
	} 
}