/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Accepted 1ms 332.0 KiB
#3 Accepted 1ms 540.0 KiB
#4 Accepted 1ms 540.0 KiB

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-05-10 15:11:14
Judged By
Score
100
Total Time
1ms
Peak Memory
540.0 KiB