結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 491 ms
44,540 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

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)

main()
0