結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー nebukuro09nebukuro09
提出日時 2016-11-18 22:39:30
言語 Python2
(2.7.18)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 51 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-11-26 07:20:34
合計ジャッジ時間 3,650 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
7,936 KB
testcase_01 AC 21 ms
7,936 KB
testcase_02 AC 21 ms
7,808 KB
testcase_03 AC 73 ms
8,064 KB
testcase_04 AC 67 ms
8,064 KB
testcase_05 AC 106 ms
9,216 KB
testcase_06 AC 105 ms
9,472 KB
testcase_07 AC 104 ms
8,320 KB
testcase_08 AC 77 ms
8,704 KB
testcase_09 AC 117 ms
9,600 KB
testcase_10 AC 45 ms
8,064 KB
testcase_11 AC 82 ms
8,192 KB
testcase_12 AC 63 ms
8,448 KB
testcase_13 AC 104 ms
9,344 KB
testcase_14 AC 124 ms
9,728 KB
testcase_15 AC 83 ms
8,064 KB
testcase_16 AC 37 ms
8,320 KB
testcase_17 AC 85 ms
7,936 KB
testcase_18 AC 42 ms
7,936 KB
testcase_19 AC 117 ms
9,600 KB
testcase_20 AC 126 ms
9,600 KB
testcase_21 AC 66 ms
8,320 KB
testcase_22 AC 80 ms
8,064 KB
testcase_23 AC 108 ms
8,192 KB
testcase_24 AC 120 ms
9,088 KB
testcase_25 AC 128 ms
9,600 KB
testcase_26 AC 112 ms
8,448 KB
testcase_27 AC 109 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction as F
score = lambda A, B: 50*A+int(F(50*A, F(4,5)+F(1,5)*B))

N = input()
L = map(int, raw_input().split())
ACed = [0 for _ in xrange(N)]
T = input()
d = {}

for i in xrange(T):
    n, p = raw_input().split()
    p = ord(p) - ord('A')
    if n not in d:
        d[n] = [0 for _ in xrange(N+1)]
    ACed[p] += 1
    d[n][p] = score(L[p], ACed[p])
    d[n][N] = i

ans = sorted(d.keys(), key=lambda x:(-sum(d[x][:-1]), d[x][-1]))
for i, k in enumerate(ans):
    print i+1, k, ' '.join(map(str, d[k][:-1])), sum(d[k][:-1])
0