結果

問題 No.318 学学学学学
ユーザー pluto77pluto77
提出日時 2018-02-07 11:05:46
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 394 bytes
コンパイル時間 849 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 44,932 KB
最終ジャッジ日時 2024-09-14 09:59:39
合計ジャッジ時間 6,551 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
14,840 KB
testcase_01 AC 82 ms
12,272 KB
testcase_02 AC 97 ms
13,516 KB
testcase_03 AC 67 ms
11,292 KB
testcase_04 AC 85 ms
12,616 KB
testcase_05 AC 636 ms
44,932 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki318

n=int(raw_input())
a=map(int,raw_input().split())
b=list(a)
b.reverse()
r={}
l={}
for i,a in enumerate(a):
 r[a]=i
r=sorted(r.items(),key=lambda x:-x[0])
for i,b in enumerate(b):
 l[b]=n-i-1
l=sorted(l.items(),key=lambda x:-x[0])
res=[0]*n
for i in xrange(len(r)):
 for j in xrange(l[i][1],r[i][1]+1):
  if res[j]==0:
   res[j]=l[i][0]
for i in xrange(len(res)):
 print res[i],
print
0