結果
| 問題 |
No.2655 Increasing Strides
|
| コンテスト | |
| ユーザー |
Kude
|
| 提出日時 | 2024-03-01 21:28:37 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 110 bytes |
| コンパイル時間 | 212 ms |
| コンパイル使用メモリ | 82,168 KB |
| 実行使用メモリ | 53,672 KB |
| 最終ジャッジ日時 | 2024-09-29 13:30:16 |
| 合計ジャッジ時間 | 2,539 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 29 WA * 5 |
ソースコード
n = int(input())
x0 = n // 2
x1 = (n + 1) // 2
ans = x0 % 4 >= 2 and x1 % 4 == 0
print('Yes' if ans else 'No')
Kude