結果

問題 No.662 スロットマシーン
ユーザー lloyzlloyz
提出日時 2022-07-23 01:11:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 76,592 KB
最終ジャッジ日時 2024-07-04 10:10:30
合計ジャッジ時間 2,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,328 KB
testcase_01 AC 39 ms
54,192 KB
testcase_02 AC 49 ms
63,092 KB
testcase_03 AC 50 ms
65,116 KB
testcase_04 AC 65 ms
69,496 KB
testcase_05 AC 49 ms
64,108 KB
testcase_06 AC 66 ms
70,368 KB
testcase_07 AC 67 ms
70,144 KB
testcase_08 AC 70 ms
73,464 KB
testcase_09 AC 77 ms
76,288 KB
testcase_10 AC 76 ms
76,496 KB
testcase_11 AC 78 ms
76,196 KB
testcase_12 AC 78 ms
76,476 KB
testcase_13 AC 76 ms
76,552 KB
testcase_14 AC 77 ms
76,416 KB
testcase_15 AC 76 ms
76,288 KB
testcase_16 AC 38 ms
52,632 KB
testcase_17 AC 76 ms
76,592 KB
testcase_18 AC 76 ms
76,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = []
for _ in range(5):
    l, c = input().split()
    L.append((l, int(c)))

C = []
tot = 1
for _ in range(3):
    n = int(input())
    tot *= n
    CC = [0, 0, 0, 0, 0]
    for __ in range(n):
        l = input()
        for i in range(5):
            if L[i][0] == l:
                CC[i] += 1
    C.append(CC)

ans = 0.0
ANS = [0, 0, 0, 0, 0]
for i in range(5):
    res = 5
    for j in range(3):
        res *= C[j][i]
    ANS[i] = res
for i in range(5):
    ans += ANS[i] * L[i][1] / tot
print(ans)
print(*ANS, sep='\n')
0