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