結果
問題 | No.8041 なんとかのはなうらない |
ユーザー |
|
提出日時 | 2023-10-27 22:13:54 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 152 bytes |
コンパイル時間 | 2,031 ms |
コンパイル使用メモリ | 199,884 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-25 14:17:16 |
合計ジャッジ時間 | 2,538 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 11 WA * 2 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int f = (n % 2) ^ (n % 4 == 0); cout << (f ? "Yes" : "No") << '\n'; }