結果
問題 | No.2655 Increasing Strides |
ユーザー |
|
提出日時 | 2024-03-01 22:22:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 111 bytes |
コンパイル時間 | 298 ms |
コンパイル使用メモリ | 82,244 KB |
実行使用メモリ | 53,800 KB |
最終ジャッジ日時 | 2024-09-29 14:23:53 |
合計ジャッジ時間 | 2,949 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 29 WA * 5 |
ソースコード
N = int(input())r = (N + 1) // 2rr = N // 2if r % 4 == 0 and rr % 4 == 0:print('Yes')else:print('No')