結果

問題 No.447 ゆきこーだーの雨と雪 (2)
ユーザー mkawa2mkawa2
提出日時 2019-12-30 17:50:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 1,594 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 45,332 KB
最終ジャッジ日時 2024-04-26 10:20:52
合計ジャッジ時間 16,601 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 485 ms
44,564 KB
testcase_01 AC 500 ms
44,708 KB
testcase_02 AC 502 ms
44,700 KB
testcase_03 AC 516 ms
44,808 KB
testcase_04 AC 529 ms
44,692 KB
testcase_05 AC 524 ms
44,824 KB
testcase_06 AC 546 ms
45,332 KB
testcase_07 AC 520 ms
44,948 KB
testcase_08 AC 527 ms
44,700 KB
testcase_09 AC 541 ms
44,820 KB
testcase_10 AC 510 ms
44,696 KB
testcase_11 AC 527 ms
44,940 KB
testcase_12 AC 516 ms
44,816 KB
testcase_13 AC 539 ms
44,560 KB
testcase_14 AC 536 ms
45,068 KB
testcase_15 AC 492 ms
44,560 KB
testcase_16 AC 500 ms
44,944 KB
testcase_17 AC 508 ms
44,944 KB
testcase_18 AC 505 ms
44,692 KB
testcase_19 AC 549 ms
45,080 KB
testcase_20 AC 541 ms
44,684 KB
testcase_21 AC 532 ms
44,956 KB
testcase_22 AC 511 ms
44,700 KB
testcase_23 AC 517 ms
44,824 KB
testcase_24 AC 534 ms
44,944 KB
testcase_25 AC 558 ms
44,820 KB
testcase_26 AC 524 ms
44,700 KB
testcase_27 AC 521 ms
44,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
# from math import *
from collections import *
from heapq import *
from random import *
from decimal import *
import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def main():
    n=II()
    ll=LI()
    t=II()
    qtoj={c:j for j,c in enumerate("ABCDEFGHIJKLMNOPQRSTUVWXYZ")}
    nametoi={}
    itoname=[]
    ranks=[1]*n
    cnt_name=0
    score=[]
    last=[]
    for k in range(t):
        name,q=input().split()
        if not name in nametoi:
            nametoi[name]=cnt_name
            itoname.append(name)
            cnt_name+=1
            score+=[[0]*n]
            last.append(1000000)
        i=nametoi[name]
        j=qtoj[q]
        star=ll[j]
        rank=ranks[j]
        ranks[j]+=1
        score[i][j]=50*star+250*star//(4+rank)
        last[i]=k
    hp=[]
    for i in range(cnt_name):
        heappush(hp,[-sum(score[i]),last[i],i])
    r=1
    while hp:
        s,l,i=heappop(hp)
        print(r,itoname[i],*score[i],-s)
        r+=1

main()
0