Accepted
Code
#include<bits/stdc++.h>
#define ll long long int
#define yes "YES"
#define no "NO"
#define nl "\n"
using namespace std;
void solve()
{
int n;
cin>>n;
vector<int>a(n);
for(int i=0; i<n; i++)
{
cin>>a[i];
}
}
int main()
{
int n;
cin>>n;
if(n*2<=100)cout<<yes<<nl;
else cout<<no<<nl;
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1056 Grown up boy sunny
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-05-10 15:11:14
- Judged At
- 2024-11-11 03:30:14
- Judged By
- Score
- 100
- Total Time
- 2ms
- Peak Memory
- 772.0 KiB