結果

問題 No.318 学学学学学
ユーザー pluto77pluto77
提出日時 2018-02-09 11:43:46
言語 Python2
(2.7.18)
結果
AC  
実行時間 666 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 22,216 KB
最終ジャッジ日時 2024-06-22 18:32:24
合計ジャッジ時間 9,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
8,168 KB
testcase_01 AC 58 ms
8,768 KB
testcase_02 AC 72 ms
9,256 KB
testcase_03 AC 49 ms
8,504 KB
testcase_04 AC 61 ms
9,048 KB
testcase_05 AC 567 ms
22,216 KB
testcase_06 AC 416 ms
20,368 KB
testcase_07 AC 522 ms
20,360 KB
testcase_08 AC 476 ms
17,412 KB
testcase_09 AC 388 ms
17,416 KB
testcase_10 AC 318 ms
16,516 KB
testcase_11 AC 565 ms
22,084 KB
testcase_12 AC 505 ms
17,544 KB
testcase_13 AC 346 ms
16,904 KB
testcase_14 AC 375 ms
15,132 KB
testcase_15 AC 361 ms
15,148 KB
testcase_16 AC 393 ms
15,144 KB
testcase_17 AC 666 ms
17,532 KB
testcase_18 AC 486 ms
19,208 KB
testcase_19 AC 189 ms
20,408 KB
testcase_20 AC 310 ms
14,276 KB
testcase_21 AC 10 ms
6,944 KB
testcase_22 AC 10 ms
6,940 KB
testcase_23 AC 10 ms
6,940 KB
testcase_24 AC 10 ms
6,940 KB
testcase_25 AC 10 ms
6,940 KB
testcase_26 AC 10 ms
6,940 KB
testcase_27 AC 10 ms
6,940 KB
testcase_28 AC 10 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki318
import heapq

n=int(raw_input())
a=map(int,raw_input().split())
d={}
b=[0 for i in xrange(n)]
for i,v in enumerate(a):
 d[v]=i
q=[]
for i,v in enumerate(a):
 heapq.heappush(q,-v)
 while d[-q[0]]<i:
  heapq.heappop(q)
 b[i]=-q[0]
for i in xrange(len(b)):
 print b[i],
print
0