結果

問題 No.1438 Broken Drawers
ユーザー 炭酸水炭酸水
提出日時 2022-05-14 05:38:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,102 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,376 KB
最終ジャッジ日時 2024-07-22 11:55:13
合計ジャッジ時間 6,004 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 195 ms
29,540 KB
testcase_07 AC 213 ms
29,540 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 38 ms
11,776 KB
testcase_12 AC 109 ms
18,212 KB
testcase_13 AC 161 ms
22,844 KB
testcase_14 AC 84 ms
15,956 KB
testcase_15 AC 251 ms
29,200 KB
testcase_16 AC 227 ms
27,504 KB
testcase_17 AC 237 ms
29,672 KB
testcase_18 AC 236 ms
30,000 KB
testcase_19 AC 249 ms
29,964 KB
testcase_20 AC 265 ms
30,176 KB
testcase_21 AC 240 ms
29,800 KB
testcase_22 AC 247 ms
30,376 KB
testcase_23 AC 260 ms
29,668 KB
testcase_24 AC 247 ms
29,540 KB
testcase_25 AC 255 ms
29,536 KB
testcase_26 AC 251 ms
29,532 KB
testcase_27 AC 280 ms
29,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

z = []

if a[0] < a[1]:
    z.append(True)
elif a[0] > a[1]:
    if a[1] < a[2]:
        z.append(False)
    elif a[1] > a[2]:
        z.append(True)

for i in range(1, n - 1):
    if a[i - 1] < a[i] < a[i + 1]:
        z.append(True)
    
    elif a[i - 1] > a[i] > a[i + 1]:
        if z[i - 1]:
            z.append(False)
        else:
            z.append(True)
    
    elif a[i - 1] > a[i] < a[i + 1]:
        if z[i - 1]:
            z.append(False)
        else:
            z.append(True)
    
    elif a[i - 1] < a[i] > a[i + 1]:
        if z[i - 1]:
            z.append(True)
        else:
            if i < n - 2:
                if a[i + 1] < a[i + 2]:
                    z.append(False)
                elif a[i + 1] > a[i + 2]:
                    z.append(True)
            elif i == n - 2:
                z.append(True)

if a[-2] < a[-1]:
    z.append(True)
elif a[-2] > a[-1]:
    if z[-1]:
        z.append(False)
    else:
        z.append(True)

ans = 0        
for i in range(n):
    if z[i]:
        ans += 1

print(ans)
0