結果
問題 | No.2655 Increasing Strides |
ユーザー |
|
提出日時 | 2024-03-30 17:48:37 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 85 bytes |
コンパイル時間 | 517 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 52,096 KB |
最終ジャッジ日時 | 2024-09-30 17:37:43 |
合計ジャッジ時間 | 2,461 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 26 WA * 8 |
ソースコード
N = int(input())if N%8 == 0 or N >= 8 and N%8 == 4:print("Yes")else:print("No")