- Code: Select all
#include <bits/stdc++.h>
using namespace std;
const int N = 100005;
int n;
void init(){
scanf("%d",&n);
if(n > 28) puts("YES");
else puts("NO");
}
int main(){
init();
return 0;
}
I wonder how this code runs for 1.18 seconds. If I submit this code on codeforces the runtime should not be more than 30 milliseconds.