結果
| 問題 | No.2655 Increasing Strides |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-03-01 22:32:27 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 62 ms / 2,000 ms |
| + 35µs | |
| コード長 | 128 bytes |
| 記録 | |
| コンパイル時間 | 247 ms |
| コンパイル使用メモリ | 95,692 KB |
| 実行使用メモリ | 78,848 KB |
| 最終ジャッジ日時 | 2026-09-06 02:58:15 |
| 合計ジャッジ時間 | 4,406 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 34 |
ソースコード
N = int(input())
r = (N + 1) // 2
rr = N // 2
if r % 2 == 0 and (rr % 4 == 0 or rr % 4 == 3):
print('Yes')
else:
print('No')