結果

問題 No.662 スロットマシーン
ユーザー convexineqconvexineq
提出日時 2021-03-02 20:27:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,664 KB
最終ジャッジ日時 2024-10-03 02:07:15
合計ジャッジ時間 2,135 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 43 ms
52,864 KB
testcase_03 AC 44 ms
54,272 KB
testcase_04 AC 68 ms
65,920 KB
testcase_05 AC 47 ms
52,608 KB
testcase_06 AC 57 ms
66,304 KB
testcase_07 AC 57 ms
66,304 KB
testcase_08 AC 81 ms
76,424 KB
testcase_09 AC 82 ms
76,328 KB
testcase_10 AC 81 ms
76,664 KB
testcase_11 AC 83 ms
76,544 KB
testcase_12 AC 80 ms
76,356 KB
testcase_13 AC 81 ms
76,288 KB
testcase_14 AC 83 ms
76,332 KB
testcase_15 AC 85 ms
76,392 KB
testcase_16 AC 40 ms
52,352 KB
testcase_17 AC 84 ms
76,416 KB
testcase_18 AC 83 ms
76,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = {}
for _ in range(5):
    a,b = input().split()
    d[a] = int(b)
num = {k:5 for k in d}
tot = 1
for _ in range(3):
    n = int(input())
    tot *= n
    dd = {k:0 for k in d}
    for __ in range(n):
        dd[input()] += 1
    for k,v in dd.items():
        num[k] *= v
ans = 0
for k,v in num.items():
    ans += d[k]*v
print(ans/tot)
for k,v in num.items():
    print(v)
0