結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー rlangevinrlangevin
提出日時 2023-08-10 01:15:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 132 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 53,616 KB
最終ジャッジ日時 2024-04-27 19:07:15
合計ジャッジ時間 2,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,076 KB
testcase_01 AC 38 ms
52,392 KB
testcase_02 AC 39 ms
53,104 KB
testcase_03 AC 39 ms
53,616 KB
testcase_04 AC 39 ms
52,196 KB
testcase_05 AC 42 ms
52,876 KB
testcase_06 AC 39 ms
52,820 KB
testcase_07 AC 38 ms
52,736 KB
testcase_08 AC 38 ms
52,732 KB
testcase_09 AC 38 ms
52,064 KB
testcase_10 AC 38 ms
52,808 KB
testcase_11 AC 37 ms
53,244 KB
testcase_12 AC 37 ms
53,576 KB
testcase_13 AC 37 ms
52,800 KB
testcase_14 AC 38 ms
53,348 KB
testcase_15 AC 38 ms
52,112 KB
testcase_16 AC 38 ms
52,428 KB
testcase_17 AC 37 ms
52,392 KB
testcase_18 AC 38 ms
52,140 KB
testcase_19 AC 37 ms
53,020 KB
testcase_20 AC 38 ms
51,868 KB
testcase_21 AC 37 ms
53,076 KB
testcase_22 AC 37 ms
52,212 KB
testcase_23 AC 37 ms
52,268 KB
testcase_24 AC 38 ms
51,684 KB
testcase_25 AC 38 ms
53,292 KB
testcase_26 AC 37 ms
52,136 KB
testcase_27 AC 38 ms
53,344 KB
testcase_28 AC 38 ms
52,052 KB
testcase_29 AC 38 ms
52,008 KB
testcase_30 AC 38 ms
52,948 KB
testcase_31 AC 37 ms
53,008 KB
testcase_32 AC 38 ms
52,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())
ans = 0
for a in [2, 3, 5, 7, 11, 13]:
    for b in [4, 6, 8, 9, 10, 12]:
        ans += (a * b == K)
print(ans/36)
0