結果

問題 No.318 学学学学学
ユーザー TawaraTawara
提出日時 2015-12-11 20:59:13
言語 Python2
(2.7.18)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 45,588 KB
最終ジャッジ日時 2024-06-22 15:41:32
合計ジャッジ時間 6,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
9,928 KB
testcase_01 AC 74 ms
13,000 KB
testcase_02 AC 85 ms
14,604 KB
testcase_03 AC 57 ms
11,940 KB
testcase_04 AC 76 ms
13,516 KB
testcase_05 AC 558 ms
45,588 KB
testcase_06 AC 374 ms
34,868 KB
testcase_07 AC 289 ms
30,948 KB
testcase_08 AC 231 ms
25,444 KB
testcase_09 AC 184 ms
23,012 KB
testcase_10 AC 150 ms
20,196 KB
testcase_11 AC 532 ms
45,588 KB
testcase_12 AC 357 ms
34,792 KB
testcase_13 AC 275 ms
30,824 KB
testcase_14 AC 224 ms
25,448 KB
testcase_15 AC 187 ms
22,964 KB
testcase_16 AC 151 ms
20,324 KB
testcase_17 AC 232 ms
31,004 KB
testcase_18 AC 240 ms
31,364 KB
testcase_19 AC 220 ms
31,004 KB
testcase_20 AC 144 ms
18,724 KB
testcase_21 AC 11 ms
6,940 KB
testcase_22 AC 12 ms
6,940 KB
testcase_23 AC 11 ms
6,940 KB
testcase_24 AC 12 ms
6,940 KB
testcase_25 AC 11 ms
6,944 KB
testcase_26 AC 11 ms
6,940 KB
testcase_27 AC 11 ms
6,944 KB
testcase_28 AC 11 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input();a=map(int,raw_input().split())
b=[0]*N;n=range(1,N+1);d={}
for i,v in enumerate(a):
	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