結果

問題 No.662 スロットマシーン
ユーザー 330Xs330Xs
提出日時 2022-01-30 17:41:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-06-11 08:20:05
合計ジャッジ時間 2,613 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,888 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 44 ms
54,528 KB
testcase_03 AC 49 ms
55,808 KB
testcase_04 AC 67 ms
68,992 KB
testcase_05 AC 45 ms
54,528 KB
testcase_06 AC 70 ms
70,144 KB
testcase_07 AC 72 ms
70,272 KB
testcase_08 AC 101 ms
76,928 KB
testcase_09 AC 101 ms
76,928 KB
testcase_10 AC 100 ms
76,800 KB
testcase_11 AC 100 ms
76,928 KB
testcase_12 AC 107 ms
76,928 KB
testcase_13 AC 104 ms
77,184 KB
testcase_14 AC 101 ms
77,184 KB
testcase_15 AC 108 ms
76,928 KB
testcase_16 AC 44 ms
54,016 KB
testcase_17 AC 104 ms
76,928 KB
testcase_18 AC 102 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
lis = []
for _ in range(5):
    l = list(map(str,input().split()))
    lis.append(l)

n1 = int(input())
r1 = []
for _ in range(n1):
    r1.append(input())
r1 = Counter(r1)

n2 = int(input())
r2 = []
for _ in range(n2):
    r2.append(input())
r2 = Counter(r2)

n3 = int(input())
r3 = []
for _ in range(n3):
    r3.append(input())
r3 = Counter(r3)

each_cnt = []
for i in range(5):
    ans = 5*r1[lis[i][0]]*r2[lis[i][0]]*r3[lis[i][0]]
    each_cnt.append(ans)

ex = 0
for i in range(5):
    ex += each_cnt[i] * int(lis[i][1])

print(ex / (n1 * n2 * n3))
for i in range(5):
    print(each_cnt[i])
0