結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー roarisroaris
提出日時 2019-08-20 11:51:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 652 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 79,052 KB
最終ジャッジ日時 2024-10-06 11:52:06
合計ジャッジ時間 3,913 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 82 ms
76,412 KB
testcase_04 AC 77 ms
74,752 KB
testcase_05 AC 120 ms
78,456 KB
testcase_06 AC 124 ms
78,976 KB
testcase_07 AC 97 ms
76,928 KB
testcase_08 AC 113 ms
77,696 KB
testcase_09 AC 117 ms
78,560 KB
testcase_10 AC 76 ms
74,972 KB
testcase_11 AC 85 ms
76,416 KB
testcase_12 AC 105 ms
77,824 KB
testcase_13 AC 118 ms
78,336 KB
testcase_14 AC 124 ms
79,052 KB
testcase_15 AC 85 ms
76,800 KB
testcase_16 AC 68 ms
72,704 KB
testcase_17 AC 85 ms
76,288 KB
testcase_18 AC 64 ms
68,096 KB
testcase_19 AC 123 ms
78,592 KB
testcase_20 AC 125 ms
78,820 KB
testcase_21 AC 89 ms
76,800 KB
testcase_22 AC 87 ms
76,800 KB
testcase_23 AC 90 ms
77,184 KB
testcase_24 AC 122 ms
78,224 KB
testcase_25 AC 126 ms
78,592 KB
testcase_26 AC 97 ms
76,980 KB
testcase_27 AC 99 ms
76,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import floor

N = int(input())
L = list(map(int, input().split()))
rank = [1] * N
alpha = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
trans = {alpha[i]: i for i in range(26)}
T = int(input())
point = {}
last = {}

for i in range(T):
    name_i, pi = input().split()
    n = trans[pi]
    
    if name_i not in point:
        point[name_i] = [0] * N
    
    point[name_i][n] = floor(50 * L[n] + 50 * L[n] / (0.8 + 0.2 * rank[n]))
    rank[n] += 1
    last[name_i] = i

names = list(point.keys())
names.sort(key=lambda k: (-sum(point[k]), last[k]))

for i in range(len(names)):
    name_i = names[i]
    print(i+1, name_i, *point[name_i], sum(point[name_i]))
0