結果

問題 No.318 学学学学学
ユーザー TawaraTawara
提出日時 2015-12-17 18:00:01
言語 Python2
(2.7.18)
結果
AC  
実行時間 422 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 48,404 KB
最終ジャッジ日時 2024-06-22 16:08:59
合計ジャッジ時間 6,048 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,056 KB
testcase_01 AC 56 ms
13,468 KB
testcase_02 AC 67 ms
14,600 KB
testcase_03 AC 46 ms
12,068 KB
testcase_04 AC 58 ms
13,448 KB
testcase_05 AC 422 ms
48,276 KB
testcase_06 AC 290 ms
35,428 KB
testcase_07 AC 216 ms
31,204 KB
testcase_08 AC 176 ms
25,704 KB
testcase_09 AC 149 ms
23,268 KB
testcase_10 AC 125 ms
20,324 KB
testcase_11 AC 407 ms
48,404 KB
testcase_12 AC 261 ms
35,396 KB
testcase_13 AC 213 ms
31,208 KB
testcase_14 AC 179 ms
25,700 KB
testcase_15 AC 148 ms
23,272 KB
testcase_16 AC 123 ms
20,328 KB
testcase_17 AC 195 ms
35,032 KB
testcase_18 AC 198 ms
35,044 KB
testcase_19 AC 176 ms
34,968 KB
testcase_20 AC 120 ms
18,980 KB
testcase_21 AC 10 ms
6,944 KB
testcase_22 AC 9 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 10 ms
6,940 KB
testcase_27 AC 9 ms
6,940 KB
testcase_28 AC 10 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
a = map(int,raw_input().split())
b = [0]*N
nxt = range(1,N+1); d = dict()
for i,v in enumerate(a):
	if v in d: d[v][1] = i
	else: d[v] = [i,i]
S = d.items()
S.sort(reverse = True)
for k,(l,r) in S:
	while l <= r:
		if b[l] == 0: b[l] = k
		nxt[l],l = r,nxt[l]
	nxt[r] = l
print " ".join(map(str,b))
0