結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー AEnAEn
提出日時 2022-08-26 15:56:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-10-13 17:12:34
合計ジャッジ時間 4,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,632 KB
testcase_01 AC 41 ms
54,272 KB
testcase_02 AC 38 ms
53,248 KB
testcase_03 AC 81 ms
77,312 KB
testcase_04 AC 80 ms
77,244 KB
testcase_05 AC 115 ms
79,148 KB
testcase_06 AC 116 ms
79,360 KB
testcase_07 AC 106 ms
77,568 KB
testcase_08 AC 115 ms
77,696 KB
testcase_09 AC 119 ms
79,104 KB
testcase_10 AC 91 ms
76,800 KB
testcase_11 AC 96 ms
77,184 KB
testcase_12 AC 113 ms
77,624 KB
testcase_13 AC 120 ms
79,360 KB
testcase_14 AC 125 ms
79,360 KB
testcase_15 AC 96 ms
77,440 KB
testcase_16 AC 75 ms
73,472 KB
testcase_17 AC 93 ms
77,568 KB
testcase_18 AC 73 ms
69,632 KB
testcase_19 AC 126 ms
78,976 KB
testcase_20 AC 124 ms
80,000 KB
testcase_21 AC 97 ms
77,056 KB
testcase_22 AC 94 ms
77,440 KB
testcase_23 AC 99 ms
77,440 KB
testcase_24 AC 122 ms
79,232 KB
testcase_25 AC 134 ms
79,488 KB
testcase_26 AC 104 ms
77,696 KB
testcase_27 AC 107 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
L = list(map(int, input().split()))
T = int(input())
sub = []
n = set()
name = defaultdict(int)
id = defaultdict(int)
for i in range(T):
    NA, P = map(str, input().split())
    if NA not in n:
        name[NA] = len(n)
        id[len(n)] = NA
        n.add(NA)
    sub.append((NA, P))
ac = [0]*N
ls = [-1]*len(n)
sm = [0]*len(n)
sc = [[0]*N for _ in range(len(n))]
for i, (NA, P) in enumerate(sub):
    idx = name[NA]
    ls[idx] = i
    ac[ord(P)-65] += 1
    score = 50*L[ord(P)-65]*(9+ac[ord(P)-65])//(4+ac[ord(P)-65])
    sm[idx] += score
    sc[idx][ord(P)-65] = score
res = []
for i in range(len(n)):
    res.append([i, sm[i], ls[i]])
res.sort(key = lambda x:(-x[1], x[2]))
sta = 1
for i, smm, lss in res:
    Name = id[i]
    print(sta, Name, *sc[i], smm)
    sta += 1
0