結果

問題 No.318 学学学学学
ユーザー nebukuro09nebukuro09
提出日時 2016-10-31 09:59:26
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 1,227 ms
コンパイル使用メモリ 76,576 KB
実行使用メモリ 105,100 KB
最終ジャッジ日時 2024-06-22 18:06:29
合計ジャッジ時間 7,330 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
79,936 KB
testcase_01 AC 144 ms
82,212 KB
testcase_02 AC 146 ms
83,200 KB
testcase_03 AC 158 ms
82,256 KB
testcase_04 AC 163 ms
82,456 KB
testcase_05 AC 221 ms
105,088 KB
testcase_06 AC 179 ms
96,396 KB
testcase_07 AC 188 ms
92,928 KB
testcase_08 AC 168 ms
91,136 KB
testcase_09 AC 161 ms
89,344 KB
testcase_10 AC 147 ms
88,576 KB
testcase_11 AC 217 ms
105,100 KB
testcase_12 AC 196 ms
97,024 KB
testcase_13 AC 185 ms
93,596 KB
testcase_14 AC 179 ms
91,516 KB
testcase_15 AC 175 ms
89,728 KB
testcase_16 AC 173 ms
89,324 KB
testcase_17 AC 189 ms
95,360 KB
testcase_18 AC 178 ms
96,128 KB
testcase_19 AC 135 ms
100,096 KB
testcase_20 AC 160 ms
90,368 KB
testcase_21 AC 80 ms
75,648 KB
testcase_22 AC 79 ms
75,648 KB
testcase_23 AC 77 ms
75,392 KB
testcase_24 AC 80 ms
75,392 KB
testcase_25 AC 81 ms
75,648 KB
testcase_26 AC 81 ms
75,520 KB
testcase_27 AC 81 ms
75,520 KB
testcase_28 AC 78 ms
75,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N = input()
A = map(int, raw_input().split())
R = {}

for i, a in enumerate(A):
    R[a] = i

q = []
B = [0 for _ in xrange(N)]
for i, a in enumerate(A):
    heapq.heappush(q, -a)
    while R[-q[0]] < i:
        heapq.heappop(q)
    B[i] = -q[0]
print ' '.join(map(str, B))
0