結果
問題 | No.447 ゆきこーだーの雨と雪 (2) |
ユーザー | mkawa2 |
提出日時 | 2019-12-30 17:50:37 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 596 ms / 2,000 ms |
コード長 | 1,594 bytes |
コンパイル時間 | 112 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 45,200 KB |
最終ジャッジ日時 | 2024-11-09 00:53:07 |
合計ジャッジ時間 | 17,374 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 529 ms
44,812 KB |
testcase_01 | AC | 526 ms
44,692 KB |
testcase_02 | AC | 524 ms
44,688 KB |
testcase_03 | AC | 549 ms
44,696 KB |
testcase_04 | AC | 538 ms
44,576 KB |
testcase_05 | AC | 556 ms
44,688 KB |
testcase_06 | AC | 572 ms
45,200 KB |
testcase_07 | AC | 553 ms
44,684 KB |
testcase_08 | AC | 561 ms
44,820 KB |
testcase_09 | AC | 570 ms
44,948 KB |
testcase_10 | AC | 534 ms
44,432 KB |
testcase_11 | AC | 527 ms
44,812 KB |
testcase_12 | AC | 547 ms
44,432 KB |
testcase_13 | AC | 568 ms
44,696 KB |
testcase_14 | AC | 575 ms
44,840 KB |
testcase_15 | AC | 541 ms
44,720 KB |
testcase_16 | AC | 544 ms
44,692 KB |
testcase_17 | AC | 545 ms
44,812 KB |
testcase_18 | AC | 532 ms
44,556 KB |
testcase_19 | AC | 596 ms
44,952 KB |
testcase_20 | AC | 574 ms
44,820 KB |
testcase_21 | AC | 546 ms
44,812 KB |
testcase_22 | AC | 539 ms
44,688 KB |
testcase_23 | AC | 553 ms
44,788 KB |
testcase_24 | AC | 569 ms
44,688 KB |
testcase_25 | AC | 593 ms
44,684 KB |
testcase_26 | AC | 557 ms
44,808 KB |
testcase_27 | AC | 550 ms
44,692 KB |
ソースコード
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()