結果
問題 | No.969 じゃんけん |
ユーザー |
![]() |
提出日時 | 2020-01-29 02:35:05 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 188 bytes |
コンパイル時間 | 1,687 ms |
コンパイル使用メモリ | 164,672 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 16:32:39 |
合計ジャッジ時間 | 2,144 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 3 WA * 1 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int X; cin >> X; cout << (X % 2 == 0 ? "Yes" : "No") << '\n'; return 0; }