結果

問題 No.318 学学学学学
ユーザー nebukuro09nebukuro09
提出日時 2016-10-28 15:50:29
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 323 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 76,924 KB
実行使用メモリ 91,064 KB
最終ジャッジ日時 2024-05-03 07:15:30
合計ジャッジ時間 6,082 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 110 ms
90,676 KB
testcase_08 AC 111 ms
90,296 KB
testcase_09 AC 114 ms
90,548 KB
testcase_10 AC 112 ms
90,288 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 109 ms
89,412 KB
testcase_18 WA -
testcase_19 AC 106 ms
89,672 KB
testcase_20 WA -
testcase_21 AC 75 ms
75,776 KB
testcase_22 AC 76 ms
75,580 KB
testcase_23 AC 78 ms
75,648 KB
testcase_24 AC 76 ms
75,540 KB
testcase_25 AC 78 ms
75,904 KB
testcase_26 AC 76 ms
76,032 KB
testcase_27 AC 77 ms
75,436 KB
testcase_28 AC 77 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
A = map(int, raw_input().split())

left = [0 for _ in xrange(N)]
right = [0 for _ in xrange(N)]
left[0] = A[0]
right[-1] = A[-1]

for i in xrange(1, N):
    left[i] = max(A[i], left[i-1])
    right[-i-1] = max(A[-i-1], right[-i])

ans = [min(left[i], right[i]) for i in xrange(N)]
print ' '.join(map(str, ans))
0