結果

問題 No.662 スロットマシーン
ユーザー Meso MesoMeso Meso
提出日時 2025-01-01 13:55:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 768 bytes
コンパイル時間 860 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2025-01-01 13:55:34
合計ジャッジ時間 3,401 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 35 ms
10,624 KB
testcase_04 AC 37 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 39 ms
10,624 KB
testcase_07 AC 39 ms
10,752 KB
testcase_08 AC 54 ms
10,624 KB
testcase_09 AC 64 ms
10,880 KB
testcase_10 AC 65 ms
10,752 KB
testcase_11 AC 64 ms
10,752 KB
testcase_12 AC 66 ms
10,624 KB
testcase_13 AC 65 ms
10,880 KB
testcase_14 RE -
testcase_15 AC 67 ms
10,752 KB
testcase_16 AC 33 ms
10,752 KB
testcase_17 AC 65 ms
10,624 KB
testcase_18 AC 64 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

dic = {} 
for i in range(5):
    a, b = input().split()
    dic[a] = int(b)

dict = {}
cnt = 1
for i in range(3):
    n = int(input())
    cnt *= n
    d = {}
    for j in range(n):
        a = input()
        if a not in d:
            d[a] = 1
        else:
            d[a] += 1

    for k, v in d.items():
        if k not in dict:
            dict[k] = [v]
        else:
            dict[k].append(v)

new_dict = {}
for k, v in dict.items():
    if len(v) == 3:
        a = 1
        for i in range(3):
            a *= v[i]
        a *= 5
        new_dict[k] = a
    else:
        new_dict[k] = 0

for k, v in dic.items():
    dic[k] = new_dict[k] * v

total = 0
for v in dic.values():
    total += v

print(total/cnt)
for k in dic.keys():
    print(new_dict[k])
0