結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー あかりきあかりき
提出日時 2021-05-24 06:06:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 124 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 53,444 KB
最終ジャッジ日時 2024-10-12 11:20:57
合計ジャッジ時間 2,636 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,864 KB
testcase_01 AC 40 ms
52,500 KB
testcase_02 AC 40 ms
51,992 KB
testcase_03 AC 41 ms
52,556 KB
testcase_04 AC 38 ms
52,212 KB
testcase_05 AC 38 ms
53,104 KB
testcase_06 AC 37 ms
52,200 KB
testcase_07 AC 38 ms
53,384 KB
testcase_08 AC 37 ms
52,884 KB
testcase_09 AC 38 ms
52,760 KB
testcase_10 AC 38 ms
52,808 KB
testcase_11 AC 37 ms
53,224 KB
testcase_12 AC 38 ms
53,444 KB
testcase_13 AC 37 ms
51,820 KB
testcase_14 AC 38 ms
53,004 KB
testcase_15 AC 38 ms
52,816 KB
testcase_16 AC 37 ms
52,756 KB
testcase_17 AC 37 ms
52,196 KB
testcase_18 AC 38 ms
52,628 KB
testcase_19 AC 37 ms
53,036 KB
testcase_20 AC 38 ms
53,372 KB
testcase_21 AC 38 ms
52,684 KB
testcase_22 AC 39 ms
53,352 KB
testcase_23 AC 38 ms
52,676 KB
testcase_24 AC 38 ms
52,440 KB
testcase_25 AC 37 ms
52,468 KB
testcase_26 AC 38 ms
51,952 KB
testcase_27 AC 38 ms
53,084 KB
testcase_28 AC 37 ms
53,020 KB
testcase_29 AC 38 ms
52,616 KB
testcase_30 AC 39 ms
52,860 KB
testcase_31 AC 38 ms
53,264 KB
testcase_32 AC 38 ms
52,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k=int(input())
L1=[2,3,5,7,11,13]
L2=[4,6,8,9,10,12]
L=[]
for i in L1:
  for j in L2:
    L.append(i*j)
print(L.count(k)/36)
0