結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-12-01 09:08:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 137 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 53,704 KB
最終ジャッジ日時 2024-12-01 09:08:52
合計ジャッジ時間 3,230 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,228 KB
testcase_01 AC 40 ms
53,704 KB
testcase_02 AC 39 ms
53,016 KB
testcase_03 AC 39 ms
52,400 KB
testcase_04 AC 40 ms
52,052 KB
testcase_05 AC 40 ms
52,040 KB
testcase_06 AC 39 ms
52,752 KB
testcase_07 AC 41 ms
52,152 KB
testcase_08 AC 39 ms
52,824 KB
testcase_09 AC 39 ms
51,964 KB
testcase_10 AC 39 ms
52,612 KB
testcase_11 AC 40 ms
53,580 KB
testcase_12 AC 40 ms
52,008 KB
testcase_13 AC 40 ms
52,152 KB
testcase_14 AC 39 ms
52,276 KB
testcase_15 AC 39 ms
52,540 KB
testcase_16 AC 38 ms
53,064 KB
testcase_17 AC 40 ms
51,876 KB
testcase_18 AC 39 ms
52,024 KB
testcase_19 AC 39 ms
53,436 KB
testcase_20 AC 40 ms
52,412 KB
testcase_21 AC 39 ms
51,816 KB
testcase_22 AC 52 ms
52,084 KB
testcase_23 AC 40 ms
52,616 KB
testcase_24 AC 39 ms
53,112 KB
testcase_25 AC 39 ms
52,876 KB
testcase_26 AC 40 ms
53,436 KB
testcase_27 AC 39 ms
52,688 KB
testcase_28 AC 39 ms
52,888 KB
testcase_29 AC 40 ms
52,492 KB
testcase_30 AC 41 ms
52,276 KB
testcase_31 AC 41 ms
52,188 KB
testcase_32 AC 40 ms
52,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d1=[2,3,5,7,11,13]
d2=[4,6,8,9,10,12]
l=6
k=int(input())
c=0
for i in range(l):
  for j in range(l):
    c+=d1[i]*d2[j]==k
print(c/(l*l))
0