結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー tanon710tanon710
提出日時 2020-07-08 00:35:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 528 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 106,976 KB
最終ジャッジ日時 2024-10-01 22:35:44
合計ジャッジ時間 4,746 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,620 KB
testcase_01 AC 37 ms
53,184 KB
testcase_02 AC 38 ms
52,680 KB
testcase_03 AC 38 ms
53,144 KB
testcase_04 WA -
testcase_05 AC 38 ms
53,076 KB
testcase_06 AC 37 ms
52,068 KB
testcase_07 AC 37 ms
52,444 KB
testcase_08 WA -
testcase_09 AC 38 ms
52,880 KB
testcase_10 WA -
testcase_11 AC 38 ms
53,368 KB
testcase_12 WA -
testcase_13 AC 50 ms
65,988 KB
testcase_14 AC 49 ms
64,984 KB
testcase_15 WA -
testcase_16 AC 51 ms
66,672 KB
testcase_17 WA -
testcase_18 AC 51 ms
65,844 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 49 ms
66,620 KB
testcase_23 AC 115 ms
106,840 KB
testcase_24 AC 115 ms
106,480 KB
testcase_25 AC 114 ms
106,596 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 112 ms
106,612 KB
testcase_29 AC 111 ms
106,328 KB
testcase_30 AC 118 ms
106,976 KB
testcase_31 AC 114 ms
106,976 KB
testcase_32 AC 115 ms
106,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
input=sys.stdin.readline

n=int(input())
arr=list(map(int,input().split()))
left_min=[10**18]
for i in range(n):
    left_min.append(min(left_min[-1],arr[i]))
right_min=[10**18]
for i in range(n-1,-1,-1):
    right_min.append(min(right_min[-1],arr[i]))
right_min=right_min[::-1]
ans=10**18
for i in range(1,n-1):
    a,b,c=left_min[i],arr[i],right_min[i]
    if (b<a and b<c) or (b>a and b>c):
        ans=min(ans,a+b+c)
if ans==10**18:
    print(-1)
else:
    print(ans)
0