結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー 👑 rin204rin204
提出日時 2022-07-10 16:44:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-06-11 05:57:43
合計ジャッジ時間 3,674 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 75 ms
76,288 KB
testcase_04 AC 71 ms
74,496 KB
testcase_05 AC 114 ms
78,976 KB
testcase_06 AC 113 ms
79,488 KB
testcase_07 AC 92 ms
77,056 KB
testcase_08 AC 111 ms
78,668 KB
testcase_09 AC 112 ms
78,976 KB
testcase_10 AC 73 ms
74,880 KB
testcase_11 AC 80 ms
76,544 KB
testcase_12 AC 107 ms
78,080 KB
testcase_13 AC 112 ms
79,488 KB
testcase_14 AC 113 ms
79,024 KB
testcase_15 AC 80 ms
77,184 KB
testcase_16 AC 64 ms
73,344 KB
testcase_17 AC 81 ms
76,444 KB
testcase_18 AC 61 ms
68,480 KB
testcase_19 AC 119 ms
79,744 KB
testcase_20 AC 117 ms
79,068 KB
testcase_21 AC 83 ms
76,952 KB
testcase_22 AC 81 ms
76,596 KB
testcase_23 AC 83 ms
76,808 KB
testcase_24 AC 114 ms
78,848 KB
testcase_25 AC 121 ms
79,240 KB
testcase_26 AC 90 ms
77,440 KB
testcase_27 AC 91 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
L = list(map(int, input().split()))
cnt = [0] * n
score = {}
time = {}
T = int(input())
for i in range(T):
    name, p = input().split()
    p = ord(p) - 65
    if name not in score:
        score[name] = [0] * n
    time[name] = i
    cnt[p] += 1
    s = 50 * L[p] + int((50 * L[p]) / (0.8 + 0.2 * cnt[p]) + 0.00000001)
    score[name][p] += s
lst = []
for name in score:
    tmp = [name] + score[name] + [sum(score[name])] + [time[name]]
    lst.append(tmp)
lst.sort(key=lambda x:(-x[-2], x[-1]))
for i, row in enumerate(lst, 1):
    print(i, *row[:-1])

0