Wrong Answer
Code
#include <iostream>
#include <cmath>
#include<map>
using namespace std;
#define endl "\n"
#define int long long
/*
int prime(int a)
{
int t = 0;
for(int i = 2;i < a;i++)
{
if(a % i == 0)
{
t = a;
break;
}
}
return t;
}
*/
int32_t main()
{
int x;
cin>>x;
if(x * 2 > 100)
{
cout<<"NO";
}
else
{
cout<<"YES";
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1056 Grown up boy sunny
- Contest
- Brain Booster #3
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-05-06 15:03:20
- Judged At
- 2024-11-11 03:35:25
- Judged By
- Score
- 0
- Total Time
- 1ms
- Peak Memory
- 324.0 KiB