結果

問題 No.662 スロットマシーン
ユーザー dangodango
提出日時 2023-06-13 16:11:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 76,784 KB
最終ジャッジ日時 2024-06-22 01:25:09
合計ジャッジ時間 2,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
53,064 KB
testcase_01 AC 30 ms
53,304 KB
testcase_02 AC 31 ms
53,944 KB
testcase_03 AC 36 ms
55,744 KB
testcase_04 AC 47 ms
66,716 KB
testcase_05 AC 33 ms
54,064 KB
testcase_06 AC 46 ms
66,916 KB
testcase_07 AC 46 ms
66,712 KB
testcase_08 AC 67 ms
76,784 KB
testcase_09 AC 73 ms
76,424 KB
testcase_10 AC 72 ms
76,652 KB
testcase_11 AC 69 ms
76,588 KB
testcase_12 AC 69 ms
76,648 KB
testcase_13 AC 73 ms
76,664 KB
testcase_14 AC 72 ms
76,512 KB
testcase_15 AC 69 ms
76,668 KB
testcase_16 AC 32 ms
52,684 KB
testcase_17 AC 81 ms
76,732 KB
testcase_18 AC 79 ms
76,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = {}
for _ in range(5):
    A, B = input().split()
    D[A] = int(B)
NUM = {K:5 for K in D}
T = 1
for _ in range(3):
    N = int(input())
    T *= N
    DD = {K:0 for K in D}
    for __ in range(N):
        DD[input()] += 1
    for K, V in DD.items():
        NUM[K] *= V
RE = 0
for K, V in NUM.items():
    RE += D[K] * V
print(RE / T)
for K, V in NUM.items():
    print(V)
0