結果

問題 No.318 学学学学学
ユーザー TawaraTawara
提出日時 2015-12-17 18:17:47
言語 Python2
(2.7.18)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 44,300 KB
最終ジャッジ日時 2024-06-22 16:09:35
合計ジャッジ時間 6,692 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
10,056 KB
testcase_01 AC 72 ms
13,120 KB
testcase_02 AC 84 ms
14,396 KB
testcase_03 AC 57 ms
11,972 KB
testcase_04 AC 73 ms
13,448 KB
testcase_05 AC 533 ms
44,300 KB
testcase_06 AC 363 ms
34,016 KB
testcase_07 AC 275 ms
30,788 KB
testcase_08 AC 220 ms
25,564 KB
testcase_09 AC 179 ms
23,004 KB
testcase_10 AC 147 ms
20,316 KB
testcase_11 AC 534 ms
44,180 KB
testcase_12 AC 352 ms
34,348 KB
testcase_13 AC 272 ms
30,840 KB
testcase_14 AC 221 ms
25,564 KB
testcase_15 AC 190 ms
23,136 KB
testcase_16 AC 149 ms
20,320 KB
testcase_17 AC 231 ms
29,180 KB
testcase_18 AC 233 ms
30,460 KB
testcase_19 AC 216 ms
29,184 KB
testcase_20 AC 143 ms
18,176 KB
testcase_21 AC 12 ms
6,944 KB
testcase_22 AC 11 ms
6,940 KB
testcase_23 AC 12 ms
6,940 KB
testcase_24 AC 11 ms
6,944 KB
testcase_25 AC 11 ms
6,940 KB
testcase_26 AC 11 ms
6,944 KB
testcase_27 AC 11 ms
6,940 KB
testcase_28 AC 11 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input();b=[0]*N;n=range(1,N+1);d={}
for i,v in enumerate(map(int,raw_input().split())):
	if v in d:d[v][1]=i
	else:d[v]=[i,i]
for k,(l,r)in sorted(d.items())[::-1]:
	while l<=r:
		if b[l]==0:b[l]=k
		n[l],l=r,n[l]
	n[r]=l
print " ".join(map(str,b))
0