結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー convexineqconvexineq
提出日時 2021-02-09 05:00:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-07-06 10:56:05
合計ジャッジ時間 4,580 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,504 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 46 ms
53,248 KB
testcase_03 AC 86 ms
77,144 KB
testcase_04 AC 87 ms
76,544 KB
testcase_05 AC 130 ms
78,592 KB
testcase_06 AC 127 ms
78,720 KB
testcase_07 AC 105 ms
77,348 KB
testcase_08 AC 124 ms
78,080 KB
testcase_09 AC 121 ms
78,592 KB
testcase_10 AC 88 ms
76,884 KB
testcase_11 AC 96 ms
76,800 KB
testcase_12 AC 122 ms
77,104 KB
testcase_13 AC 123 ms
78,720 KB
testcase_14 AC 126 ms
78,720 KB
testcase_15 AC 93 ms
76,772 KB
testcase_16 AC 73 ms
72,960 KB
testcase_17 AC 91 ms
76,544 KB
testcase_18 AC 71 ms
70,144 KB
testcase_19 AC 130 ms
79,104 KB
testcase_20 AC 128 ms
78,848 KB
testcase_21 AC 100 ms
76,800 KB
testcase_22 AC 94 ms
76,672 KB
testcase_23 AC 97 ms
76,928 KB
testcase_24 AC 125 ms
78,472 KB
testcase_25 AC 130 ms
78,976 KB
testcase_26 AC 106 ms
77,184 KB
testcase_27 AC 101 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(n,k): return 50*n+500*n//(8+2*k)

n = int(input())
*a, = map(int,input().split())
T = int(input())

from collections import defaultdict
num = [0]*n
points = defaultdict(lambda : [0]*(n+1))
last = defaultdict(int)
for t in range(T):
    s,p = input().split()
    p = ord(p)-65
    num[p] += 1
    points[s][p] = f(a[p],num[p])
    last[s] = t

for k in points:
    points[k][-1] = sum(points[k])

for i,(tot,_,k) in enumerate(sorted([(lst[-1],-last[k],k) for k,lst in points.items()],reverse=1)):
    print(i+1,k,*points[k])
0