結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー brthyyjpbrthyyjp
提出日時 2022-02-17 20:34:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-06-29 07:49:49
合計ジャッジ時間 3,787 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,760 KB
testcase_01 AC 37 ms
53,376 KB
testcase_02 AC 39 ms
53,632 KB
testcase_03 AC 81 ms
76,856 KB
testcase_04 AC 83 ms
76,928 KB
testcase_05 AC 117 ms
77,824 KB
testcase_06 AC 108 ms
78,336 KB
testcase_07 AC 92 ms
77,184 KB
testcase_08 AC 96 ms
77,580 KB
testcase_09 AC 98 ms
78,340 KB
testcase_10 AC 75 ms
76,544 KB
testcase_11 AC 80 ms
76,800 KB
testcase_12 AC 97 ms
77,784 KB
testcase_13 AC 97 ms
77,952 KB
testcase_14 AC 102 ms
78,336 KB
testcase_15 AC 81 ms
76,848 KB
testcase_16 AC 64 ms
73,872 KB
testcase_17 AC 79 ms
77,056 KB
testcase_18 AC 61 ms
69,888 KB
testcase_19 AC 104 ms
78,336 KB
testcase_20 AC 106 ms
78,720 KB
testcase_21 AC 83 ms
76,928 KB
testcase_22 AC 80 ms
76,672 KB
testcase_23 AC 80 ms
76,672 KB
testcase_24 AC 103 ms
78,208 KB
testcase_25 AC 108 ms
78,464 KB
testcase_26 AC 87 ms
76,672 KB
testcase_27 AC 89 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
L = list(map(int, input().split()))
t = int(input())
from collections import defaultdict
D = defaultdict(lambda: [0]*(n+2))
C = [0]*n
for i in range(t):
    s, p = map(str, input().split())
    p = ord(p)-ord('A')
    C[p] += 1
    D[s][p] += int(50*L[p]+50*L[p]/(0.8+0.2*C[p]))
    D[s][n] += int(50*L[p]+50*L[p]/(0.8+0.2*C[p]))
    D[s][n+1] = i
D = list(D.items())
D.sort(key=lambda x: (-x[1][n], x[1][n+1]))
for i, (s, l) in enumerate(D):
    print(i+1, s, *l[:-1])
0