結果

問題 No.318 学学学学学
ユーザー TawaraTawara
提出日時 2015-12-19 00:26:18
言語 Python2
(2.7.18)
結果
AC  
実行時間 801 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 36,540 KB
最終ジャッジ日時 2024-06-22 16:13:32
合計ジャッジ時間 6,497 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
9,168 KB
testcase_01 AC 45 ms
11,304 KB
testcase_02 AC 52 ms
12,184 KB
testcase_03 AC 36 ms
10,540 KB
testcase_04 AC 46 ms
11,460 KB
testcase_05 AC 259 ms
36,536 KB
testcase_06 AC 464 ms
27,896 KB
testcase_07 AC 360 ms
25,200 KB
testcase_08 AC 243 ms
20,856 KB
testcase_09 AC 177 ms
19,188 KB
testcase_10 AC 141 ms
17,016 KB
testcase_11 AC 276 ms
36,540 KB
testcase_12 AC 197 ms
27,768 KB
testcase_13 AC 183 ms
25,204 KB
testcase_14 AC 167 ms
20,852 KB
testcase_15 AC 156 ms
19,192 KB
testcase_16 AC 143 ms
17,016 KB
testcase_17 AC 198 ms
27,500 KB
testcase_18 AC 182 ms
27,612 KB
testcase_19 AC 801 ms
27,516 KB
testcase_20 AC 133 ms
15,672 KB
testcase_21 AC 9 ms
6,944 KB
testcase_22 AC 10 ms
6,940 KB
testcase_23 AC 9 ms
6,944 KB
testcase_24 AC 9 ms
6,940 KB
testcase_25 AC 9 ms
6,940 KB
testcase_26 AC 9 ms
6,940 KB
testcase_27 AC 9 ms
6,944 KB
testcase_28 AC 10 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect,insort
N=input()
a=(map(int,raw_input().split()))
b=[0]*N;p={};l=[]
for i,v in enumerate(a):
	if v in p:p[v][1]=i
	else:p[v]=[i,i]
for i,v in enumerate(a):
	b[i]=max(v,l[-1]) if l else v
	if i==p[v][0]:insort(l,v)
	if i==p[v][1]:del l[bisect(l,v)-1]
print " ".join(map(str,b))
0