結果
問題 |
No.3041 非対称じゃんけん
|
ユーザー |
![]() |
提出日時 | 2025-06-12 20:57:32 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 80 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 82,116 KB |
実行使用メモリ | 66,644 KB |
最終ジャッジ日時 | 2025-06-12 21:01:04 |
合計ジャッジ時間 | 3,170 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 1 |
other | RE * 30 |
ソースコード
n = int(input()) if n % 4 == 1 and n > 1: print("No") else: print("Yes")