結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー nanaenanae
提出日時 2017-02-10 07:49:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 1,110 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-06-08 01:12:52
合計ジャッジ時間 2,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 33 ms
11,136 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 47 ms
12,032 KB
testcase_06 AC 65 ms
13,056 KB
testcase_07 AC 47 ms
11,520 KB
testcase_08 AC 48 ms
11,904 KB
testcase_09 AC 60 ms
12,416 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 35 ms
11,136 KB
testcase_12 AC 37 ms
11,520 KB
testcase_13 AC 53 ms
12,160 KB
testcase_14 AC 60 ms
12,544 KB
testcase_15 AC 37 ms
11,264 KB
testcase_16 AC 34 ms
11,392 KB
testcase_17 AC 34 ms
11,008 KB
testcase_18 AC 28 ms
10,880 KB
testcase_19 AC 77 ms
13,056 KB
testcase_20 AC 65 ms
12,672 KB
testcase_21 AC 38 ms
11,392 KB
testcase_22 AC 34 ms
11,008 KB
testcase_23 AC 42 ms
11,392 KB
testcase_24 AC 66 ms
12,288 KB
testcase_25 AC 78 ms
12,800 KB
testcase_26 AC 49 ms
11,648 KB
testcase_27 AC 46 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import combinations
from math import floor
from operator import itemgetter

def debug(x, table):
    for name, val in table.items():
        if x is val:
            print('DEBUG:{} -> {}'.format(name, val), file=sys.stderr)
            return None

def solve():
    N = int(input())
    Ls = [int(i) for i in input().split()]
    rank = [0] * N
    scores = {}

    T = int(input())

    for i in range(T):
        name, p = input().split()
        p = ord(p) - ord('A')
        rank[p] += 1

        if name not in scores:
            scores[name] = [0] * (N + 1)
        
        scores[name][p] += floor(50*Ls[p] + 50*Ls[p]/(0.8+0.2*rank[p]))
        scores[name][N] = i # last submit

    # debug(scores, locals())

    output = []

    for name, score in scores.items():
        output.append([name] + score[:-1] + [sum(score[:-1])] + [score[-1]])

    # debug(output, locals())

    output.sort(key=itemgetter(N+2))
    output.sort(key=itemgetter(N+1), reverse=True)

    for i in range(len(output)):
        print(i+1, *output[i][:-1])


if __name__ == '__main__':
    solve()
0