Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
void solve() {
int X;
cin >> X;
if (X * 2 <= 100)
cout << "YES\n";
else
cout << "NO\n";
}
int main() {
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
solve();
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1056 Grown up boy sunny
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-05-07 02:21:01
- Judged At
- 2024-11-11 03:31:15
- Judged By
- Score
- 0
- Total Time
- 2ms
- Peak Memory
- 444.0 KiB