結果

問題 No.2655 Increasing Strides
ユーザー ntudantuda
提出日時 2024-03-01 21:50:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 89 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 53,728 KB
最終ジャッジ日時 2024-09-29 13:47:22
合計ジャッジ時間 2,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,864 KB
testcase_01 AC 36 ms
52,236 KB
testcase_02 AC 34 ms
51,948 KB
testcase_03 AC 34 ms
52,900 KB
testcase_04 AC 33 ms
52,636 KB
testcase_05 AC 33 ms
53,728 KB
testcase_06 AC 34 ms
51,804 KB
testcase_07 AC 35 ms
52,312 KB
testcase_08 AC 34 ms
52,512 KB
testcase_09 AC 35 ms
51,628 KB
testcase_10 AC 34 ms
52,268 KB
testcase_11 AC 34 ms
53,020 KB
testcase_12 AC 35 ms
52,512 KB
testcase_13 AC 35 ms
53,032 KB
testcase_14 AC 34 ms
53,576 KB
testcase_15 AC 35 ms
52,404 KB
testcase_16 AC 33 ms
51,876 KB
testcase_17 AC 34 ms
52,612 KB
testcase_18 AC 34 ms
51,876 KB
testcase_19 AC 32 ms
52,232 KB
testcase_20 AC 33 ms
52,064 KB
testcase_21 AC 33 ms
52,552 KB
testcase_22 AC 33 ms
52,460 KB
testcase_23 AC 33 ms
51,652 KB
testcase_24 AC 33 ms
52,228 KB
testcase_25 AC 33 ms
52,520 KB
testcase_26 AC 38 ms
53,336 KB
testcase_27 AC 37 ms
52,516 KB
testcase_28 AC 36 ms
52,836 KB
testcase_29 AC 36 ms
52,148 KB
testcase_30 AC 36 ms
52,376 KB
testcase_31 AC 36 ms
51,908 KB
testcase_32 AC 36 ms
53,008 KB
testcase_33 AC 33 ms
52,624 KB
testcase_34 AC 33 ms
52,440 KB
testcase_35 AC 32 ms
51,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
N8 = N % 8
if N8 == 0 or N8 == 7:
    print("Yes")
else:
    print("No")
0