結果

問題 No.318 学学学学学
ユーザー TawaraTawara
提出日時 2015-12-19 00:27:56
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 491 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 76,588 KB
実行使用メモリ 114,028 KB
最終ジャッジ日時 2024-06-22 16:14:29
合計ジャッジ時間 6,263 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
78,344 KB
testcase_01 AC 84 ms
81,324 KB
testcase_02 AC 101 ms
84,668 KB
testcase_03 AC 81 ms
80,276 KB
testcase_04 AC 96 ms
84,276 KB
testcase_05 AC 190 ms
113,808 KB
testcase_06 AC 296 ms
102,928 KB
testcase_07 AC 233 ms
98,192 KB
testcase_08 AC 174 ms
94,864 KB
testcase_09 AC 146 ms
92,556 KB
testcase_10 AC 108 ms
89,100 KB
testcase_11 AC 198 ms
114,028 KB
testcase_12 AC 166 ms
103,060 KB
testcase_13 AC 141 ms
98,576 KB
testcase_14 AC 140 ms
95,380 KB
testcase_15 AC 133 ms
93,452 KB
testcase_16 AC 109 ms
89,228 KB
testcase_17 AC 131 ms
101,068 KB
testcase_18 AC 142 ms
101,908 KB
testcase_19 AC 491 ms
101,320 KB
testcase_20 AC 109 ms
88,848 KB
testcase_21 AC 65 ms
75,420 KB
testcase_22 AC 65 ms
75,696 KB
testcase_23 AC 64 ms
75,580 KB
testcase_24 AC 65 ms
75,296 KB
testcase_25 AC 65 ms
75,528 KB
testcase_26 AC 65 ms
75,804 KB
testcase_27 AC 64 ms
75,296 KB
testcase_28 AC 65 ms
75,812 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