結果
問題 | No.2655 Increasing Strides |
ユーザー |
![]() |
提出日時 | 2024-03-01 21:33:10 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 39 ms / 2,000 ms |
コード長 | 115 bytes |
コンパイル時間 | 145 ms |
コンパイル使用メモリ | 81,712 KB |
実行使用メモリ | 53,572 KB |
最終ジャッジ日時 | 2024-09-29 13:34:33 |
合計ジャッジ時間 | 2,461 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 34 |
ソースコード
n = int(input()) x0 = n // 2 x1 = (n + 1) // 2 ans = x0 % 4 in (3, 0) and x1 % 4 == 0 print('Yes' if ans else 'No')