結果

問題 No.662 スロットマシーン
ユーザー 💕💖💞💕💖💞
提出日時 2018-11-22 22:29:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-24 17:59:20
合計ジャッジ時間 1,873 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

from collections import Counter
char_score = {}
chars = []
for i in range(5):
  char, score = input().split()
  char_score[char] = int(score)
  chars.append(char)
#print(char_score)
char_freq = {char:5 for char,score in char_score.items()}
Ns = []
for i in range(3):
  N = int(input())
  Ns.append(N)
  o = dict(Counter([input() for n in range(N)]))
  for char in chars:
    char_freq[char] *= o[char] if o.get(char) else 0
  
points = sum([char_freq[char]*char_score[char] for char in chars])
print(points/(Ns[0]*Ns[1]*Ns[2]))
for char in chars:
  print(char_freq[char])
0