結果

問題 No.1003 サイコロの実装 (1)
ユーザー tomoyaatcodertomoyaatcoder
提出日時 2020-07-26 03:09:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 59,220 KB
最終ジャッジ日時 2024-06-27 19:01:43
合計ジャッジ時間 2,405 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,076 KB
testcase_01 AC 34 ms
52,232 KB
testcase_02 AC 36 ms
57,720 KB
testcase_03 AC 34 ms
52,000 KB
testcase_04 AC 33 ms
52,436 KB
testcase_05 AC 34 ms
53,132 KB
testcase_06 AC 35 ms
53,368 KB
testcase_07 AC 36 ms
52,888 KB
testcase_08 AC 34 ms
53,536 KB
testcase_09 AC 42 ms
59,220 KB
testcase_10 AC 37 ms
57,908 KB
testcase_11 AC 37 ms
58,020 KB
testcase_12 AC 42 ms
58,780 KB
testcase_13 AC 35 ms
58,436 KB
testcase_14 AC 37 ms
58,000 KB
testcase_15 AC 35 ms
58,292 KB
testcase_16 AC 37 ms
58,900 KB
testcase_17 AC 37 ms
57,912 KB
testcase_18 AC 37 ms
57,452 KB
testcase_19 AC 36 ms
58,128 KB
testcase_20 AC 35 ms
58,200 KB
testcase_21 AC 38 ms
58,548 KB
testcase_22 AC 36 ms
57,748 KB
testcase_23 AC 39 ms
57,728 KB
testcase_24 AC 38 ms
57,520 KB
testcase_25 AC 38 ms
58,240 KB
testcase_26 AC 37 ms
58,188 KB
testcase_27 AC 34 ms
52,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
cnt = [0 for i in range(6)]
for i in range(n):
    cnt[i % 6] += 1
if len(set(cnt)) == 1:
    print("Yes")
else:
    print("No")
0