結果

問題 No.1003 サイコロの実装 (1)
ユーザー ABKZABKZ
提出日時 2021-07-09 18:23:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 64 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 86,712 KB
実行使用メモリ 71,520 KB
最終ジャッジ日時 2023-09-14 06:34:20
合計ジャッジ時間 3,519 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,428 KB
testcase_01 AC 71 ms
71,336 KB
testcase_02 AC 71 ms
71,040 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 70 ms
71,012 KB
testcase_08 AC 71 ms
71,496 KB
testcase_09 AC 71 ms
71,140 KB
testcase_10 AC 71 ms
71,284 KB
testcase_11 AC 71 ms
71,408 KB
testcase_12 AC 72 ms
71,520 KB
testcase_13 AC 73 ms
71,412 KB
testcase_14 AC 70 ms
71,352 KB
testcase_15 AC 70 ms
71,120 KB
testcase_16 AC 71 ms
71,504 KB
testcase_17 AC 71 ms
71,048 KB
testcase_18 AC 71 ms
71,332 KB
testcase_19 AC 71 ms
71,492 KB
testcase_20 AC 71 ms
71,300 KB
testcase_21 AC 72 ms
71,428 KB
testcase_22 AC 71 ms
70,924 KB
testcase_23 AC 71 ms
71,224 KB
testcase_24 AC 70 ms
71,120 KB
testcase_25 AC 72 ms
71,336 KB
testcase_26 AC 71 ms
71,408 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

print("Yes" if N % 6 == 0 or N < 6 else "No")
0