結果
問題 |
No.1462 最弱WEAKER
|
ユーザー |
![]() |
提出日時 | 2021-05-30 21:54:58 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 249 bytes |
コンパイル時間 | 1,298 ms |
コンパイル使用メモリ | 165,276 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 21:02:29 |
合計ジャッジ時間 | 2,118 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 18 |
ソースコード
#include <bits/stdc++.h> #define NIL (-1) #define ll long long using namespace std; const int64_t MOD = 1e9 + 7; const int INF = INT_MAX; const double PI = acos(-1.0); int main() { int N; cin >> N; cout << (N % 2 == 0 ? "YES" : "NO") << endl; }