結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー qibqib
提出日時 2022-11-03 23:18:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 842 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-07-18 05:23:05
合計ジャッジ時間 3,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,280 KB
testcase_01 AC 38 ms
53,696 KB
testcase_02 AC 38 ms
52,708 KB
testcase_03 AC 70 ms
74,300 KB
testcase_04 AC 76 ms
73,000 KB
testcase_05 AC 108 ms
77,952 KB
testcase_06 AC 113 ms
78,080 KB
testcase_07 AC 99 ms
77,312 KB
testcase_08 AC 120 ms
77,736 KB
testcase_09 AC 122 ms
78,464 KB
testcase_10 AC 73 ms
72,448 KB
testcase_11 AC 84 ms
77,060 KB
testcase_12 AC 100 ms
77,308 KB
testcase_13 AC 109 ms
77,952 KB
testcase_14 AC 114 ms
78,208 KB
testcase_15 AC 84 ms
76,928 KB
testcase_16 AC 63 ms
67,712 KB
testcase_17 AC 77 ms
74,512 KB
testcase_18 AC 60 ms
64,640 KB
testcase_19 AC 115 ms
78,464 KB
testcase_20 AC 116 ms
79,232 KB
testcase_21 AC 85 ms
77,056 KB
testcase_22 AC 83 ms
76,800 KB
testcase_23 AC 83 ms
76,928 KB
testcase_24 AC 113 ms
78,336 KB
testcase_25 AC 119 ms
78,872 KB
testcase_26 AC 94 ms
77,132 KB
testcase_27 AC 93 ms
76,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
l = list(map(int, input().split()))

t = int(input())
queries = []
cnt = [0 for _ in range(n)]
idx = {}
names = []
for i in range(t):
  name, prob = input().split()
  prob = ord(prob) - ord("A")
  if idx.get(name, None) is None:
    idx[name] = len(idx)
    names.append(name)
  cnt[prob] += 1
  s = 50 * l[prob] + (50 * l[prob]) * 5 // (4 + cnt[prob])
  queries.append((idx[name], prob, s))

last = [t + 1 for _ in range(len(idx))]
score = [[0 for _ in range(n + 1)] for _ in range(len(idx))]
for k in range(t):
  i, j, s = queries[k]
  score[i][j] += s
  last[i] = k

for i in range(len(idx)):
  score[i][n] = sum(score[i])

ranking = [i for i in range(len(idx))]
ranking.sort(key=lambda x: (- score[x][-1], last[x]))
for i in range(len(idx)):
  x = ranking[i]
  print(f"{i + 1} {names[x]} " + " ".join(map(str, score[x])))
0