結果

問題 No.318 学学学学学
ユーザー mkawa2mkawa2
提出日時 2020-02-09 20:49:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 29,216 KB
最終ジャッジ日時 2024-10-01 06:05:22
合計ジャッジ時間 5,624 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
12,160 KB
testcase_01 AC 50 ms
13,924 KB
testcase_02 AC 52 ms
14,068 KB
testcase_03 AC 42 ms
13,044 KB
testcase_04 AC 48 ms
14,004 KB
testcase_05 AC 232 ms
29,216 KB
testcase_06 AC 246 ms
27,624 KB
testcase_07 AC 232 ms
25,796 KB
testcase_08 AC 225 ms
24,656 KB
testcase_09 AC 221 ms
24,412 KB
testcase_10 AC 212 ms
23,488 KB
testcase_11 AC 214 ms
28,584 KB
testcase_12 AC 201 ms
24,984 KB
testcase_13 AC 173 ms
22,480 KB
testcase_14 AC 174 ms
21,816 KB
testcase_15 AC 174 ms
21,680 KB
testcase_16 AC 180 ms
21,812 KB
testcase_17 AC 211 ms
24,332 KB
testcase_18 AC 167 ms
24,336 KB
testcase_19 AC 197 ms
27,352 KB
testcase_20 AC 197 ms
21,128 KB
testcase_21 AC 27 ms
10,880 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 28 ms
10,752 KB
testcase_28 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
from bisect import *
from collections import *
from heapq import *

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

def main():
    n=II()
    aa=LI()
    r=defaultdict(int)
    hp=[]
    for i,a in enumerate(aa):r[a]=i
    ans=[0]*n
    for i,a in enumerate(aa):
        heappush(hp,-a)
        ans[i]=-hp[0]
        while hp and r[-hp[0]]<=i:heappop(hp)
    print(*ans)

main()
0