結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー hiro1729hiro1729
提出日時 2024-08-27 18:45:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 126 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 53,556 KB
最終ジャッジ日時 2024-08-27 18:45:39
合計ジャッジ時間 3,022 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,740 KB
testcase_01 AC 34 ms
52,132 KB
testcase_02 AC 35 ms
53,272 KB
testcase_03 AC 33 ms
51,944 KB
testcase_04 AC 33 ms
51,996 KB
testcase_05 AC 32 ms
52,208 KB
testcase_06 AC 32 ms
51,680 KB
testcase_07 AC 32 ms
52,676 KB
testcase_08 AC 34 ms
52,556 KB
testcase_09 AC 32 ms
52,092 KB
testcase_10 AC 44 ms
52,528 KB
testcase_11 AC 33 ms
52,688 KB
testcase_12 AC 33 ms
52,232 KB
testcase_13 AC 33 ms
53,336 KB
testcase_14 AC 34 ms
52,128 KB
testcase_15 AC 34 ms
52,860 KB
testcase_16 AC 33 ms
52,344 KB
testcase_17 AC 32 ms
53,208 KB
testcase_18 AC 34 ms
52,200 KB
testcase_19 AC 35 ms
52,428 KB
testcase_20 AC 34 ms
52,200 KB
testcase_21 AC 34 ms
53,072 KB
testcase_22 AC 34 ms
53,556 KB
testcase_23 AC 33 ms
52,532 KB
testcase_24 AC 35 ms
52,196 KB
testcase_25 AC 33 ms
52,544 KB
testcase_26 AC 33 ms
52,612 KB
testcase_27 AC 32 ms
52,768 KB
testcase_28 AC 33 ms
52,968 KB
testcase_29 AC 34 ms
52,196 KB
testcase_30 AC 34 ms
51,944 KB
testcase_31 AC 33 ms
51,796 KB
testcase_32 AC 33 ms
53,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())
c = 0
for i in [2, 3, 5, 7, 11, 13]:
	for j in [4, 6, 8, 9, 10, 12]:
		if i * j == K:
			c += 1
print(c / 36)
0