結果

問題 No.662 スロットマシーン
ユーザー Meso MesoMeso Meso
提出日時 2025-01-01 14:15:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 805 bytes
コンパイル時間 1,015 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2025-01-01 14:15:52
合計ジャッジ時間 3,408 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

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
    ad = {}
    for j in range(n):
        a = input()
        if a not in ad:
            ad[a] = 1
        else:
            ad[a] += 1

    for k, v in ad.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

total = 0
for k, v in dic.items():
    if k in new_dict:
        dic[k] = new_dict[k] * v
    else:
        dic[k] = 0
    total += dic[k]

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