結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー Akijin_007Akijin_007
提出日時 2023-08-03 18:29:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 735 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 79,380 KB
最終ジャッジ日時 2024-10-13 15:34:55
合計ジャッジ時間 4,335 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,132 KB
testcase_01 AC 34 ms
53,180 KB
testcase_02 AC 34 ms
52,512 KB
testcase_03 AC 67 ms
74,148 KB
testcase_04 AC 68 ms
73,272 KB
testcase_05 AC 107 ms
78,724 KB
testcase_06 AC 108 ms
79,232 KB
testcase_07 AC 91 ms
77,188 KB
testcase_08 AC 103 ms
78,344 KB
testcase_09 AC 105 ms
79,028 KB
testcase_10 AC 68 ms
74,100 KB
testcase_11 AC 77 ms
76,916 KB
testcase_12 AC 99 ms
77,212 KB
testcase_13 AC 110 ms
79,108 KB
testcase_14 AC 112 ms
79,244 KB
testcase_15 AC 85 ms
77,188 KB
testcase_16 AC 67 ms
73,968 KB
testcase_17 AC 70 ms
74,360 KB
testcase_18 AC 51 ms
65,504 KB
testcase_19 AC 106 ms
79,380 KB
testcase_20 AC 114 ms
79,228 KB
testcase_21 AC 85 ms
77,236 KB
testcase_22 AC 84 ms
77,020 KB
testcase_23 AC 83 ms
77,324 KB
testcase_24 AC 113 ms
78,672 KB
testcase_25 AC 113 ms
78,972 KB
testcase_26 AC 95 ms
77,260 KB
testcase_27 AC 87 ms
77,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N = int(input())
L = list(map(int, input().split()))
T = int(input())
p = [0] * T
for i in range(T):
    p[i] = input().split()

d = dict()
lt = dict()
s = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
a = [1] * N

def score(t):
    return (50 + 50 / (0.8 + 0.2 * a[t])) * L[t]

for i in range(T):
    name, P = p[i]
    t = s.index(P)

    if name not in d:
        d[name] = [0] * N
        lt[name] = i
    d[name][t] += int(score(t))
    lt[name] = i
    a[t] += 1

u = []
for k, v in d.items():
    u.append((k, sum(v), lt[k]))

u = sorted(u, key=lambda x: (-x[1], x[2]))

for i in range(len(u)):
    print(i+1, u[i][0], " ".join([str(x) for x in d[u[i][0]]]), u[i][1])


0