結果

問題 No.662 スロットマシーン
ユーザー Meso MesoMeso Meso
提出日時 2025-01-01 14:30:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 3,028 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2025-01-01 14:30:16
合計ジャッジ時間 2,684 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 36 ms
10,624 KB
testcase_07 AC 36 ms
10,752 KB
testcase_08 AC 52 ms
10,752 KB
testcase_09 AC 64 ms
10,752 KB
testcase_10 AC 64 ms
10,752 KB
testcase_11 AC 63 ms
10,752 KB
testcase_12 AC 62 ms
10,752 KB
testcase_13 AC 62 ms
10,752 KB
testcase_14 AC 62 ms
10,624 KB
testcase_15 AC 62 ms
10,752 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 66 ms
10,624 KB
testcase_18 AC 63 ms
10,880 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
    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():
    if k in new_dict:
        print(new_dict[k])
    else:
        print(0)
0