結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー kohei2019kohei2019
提出日時 2022-01-29 08:01:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 620 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 79,268 KB
最終ジャッジ日時 2024-06-10 03:54:24
合計ジャッジ時間 4,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,392 KB
testcase_01 AC 41 ms
54,232 KB
testcase_02 AC 45 ms
53,916 KB
testcase_03 AC 86 ms
76,736 KB
testcase_04 AC 88 ms
76,956 KB
testcase_05 AC 120 ms
78,256 KB
testcase_06 AC 121 ms
78,752 KB
testcase_07 AC 101 ms
77,144 KB
testcase_08 AC 110 ms
77,880 KB
testcase_09 AC 114 ms
78,324 KB
testcase_10 AC 83 ms
76,944 KB
testcase_11 AC 89 ms
76,788 KB
testcase_12 AC 109 ms
77,652 KB
testcase_13 AC 110 ms
78,276 KB
testcase_14 AC 112 ms
78,620 KB
testcase_15 AC 87 ms
76,980 KB
testcase_16 AC 70 ms
73,256 KB
testcase_17 AC 85 ms
76,816 KB
testcase_18 AC 66 ms
70,960 KB
testcase_19 AC 118 ms
78,712 KB
testcase_20 AC 125 ms
79,268 KB
testcase_21 AC 93 ms
77,120 KB
testcase_22 AC 87 ms
77,052 KB
testcase_23 AC 90 ms
77,512 KB
testcase_24 AC 118 ms
78,176 KB
testcase_25 AC 121 ms
78,472 KB
testcase_26 AC 96 ms
77,432 KB
testcase_27 AC 98 ms
77,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = int(input())
lsL = list(map(int,input().split()))
alp = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
T = int(input())
score = collections.defaultdict(lambda:[0]*N)
total = collections.defaultdict(lambda:(0,0))
rank = [1]*(N)
for i in range(T):
    name,p = input().split()
    pn = alp.index(p)
    s = lsL[pn]
    score[name][pn] = 50*s + 500*s//(8+2*rank[pn])
    a,b = total[name]
    total[name] = (a+score[name][pn],-i)
    rank[pn] += 1

aa = []
for key,val in total.items():
    aa.append((val[0],val[1],key))
aa.sort(reverse=True)
for i in range(len(aa)):
    print(i+1,aa[i][2],*score[aa[i][2]],aa[i][0])
0