結果

問題 No.2655 Increasing Strides
ユーザー ntudantuda
提出日時 2024-03-01 21:45:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 88 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 81,748 KB
実行使用メモリ 53,852 KB
最終ジャッジ日時 2024-09-29 13:41:37
合計ジャッジ時間 2,211 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,144 KB
testcase_01 AC 36 ms
52,248 KB
testcase_02 AC 37 ms
52,632 KB
testcase_03 AC 34 ms
51,808 KB
testcase_04 AC 33 ms
52,972 KB
testcase_05 AC 33 ms
53,536 KB
testcase_06 AC 33 ms
52,180 KB
testcase_07 AC 33 ms
51,828 KB
testcase_08 AC 33 ms
53,016 KB
testcase_09 AC 34 ms
52,668 KB
testcase_10 AC 33 ms
52,840 KB
testcase_11 AC 33 ms
51,812 KB
testcase_12 AC 33 ms
52,432 KB
testcase_13 AC 34 ms
52,500 KB
testcase_14 WA -
testcase_15 AC 33 ms
53,028 KB
testcase_16 AC 33 ms
52,660 KB
testcase_17 AC 33 ms
52,228 KB
testcase_18 AC 32 ms
52,832 KB
testcase_19 AC 33 ms
52,000 KB
testcase_20 AC 33 ms
52,840 KB
testcase_21 AC 33 ms
52,816 KB
testcase_22 WA -
testcase_23 AC 34 ms
53,072 KB
testcase_24 AC 34 ms
52,416 KB
testcase_25 AC 33 ms
53,020 KB
testcase_26 WA -
testcase_27 AC 33 ms
52,148 KB
testcase_28 AC 33 ms
52,356 KB
testcase_29 AC 33 ms
52,304 KB
testcase_30 AC 34 ms
52,612 KB
testcase_31 AC 33 ms
52,680 KB
testcase_32 AC 34 ms
52,432 KB
testcase_33 AC 34 ms
53,232 KB
testcase_34 WA -
testcase_35 AC 36 ms
52,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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