結果

問題 No.1438 Broken Drawers
ユーザー 炭酸水炭酸水
提出日時 2022-05-14 05:40:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 1,415 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 30,284 KB
最終ジャッジ日時 2024-07-22 11:57:21
合計ジャッジ時間 5,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 195 ms
29,440 KB
testcase_07 AC 224 ms
29,572 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 41 ms
11,648 KB
testcase_12 AC 118 ms
17,868 KB
testcase_13 AC 178 ms
22,500 KB
testcase_14 AC 92 ms
15,868 KB
testcase_15 AC 260 ms
29,108 KB
testcase_16 AC 243 ms
27,544 KB
testcase_17 AC 256 ms
29,580 KB
testcase_18 AC 264 ms
29,784 KB
testcase_19 AC 274 ms
30,000 KB
testcase_20 AC 285 ms
30,220 KB
testcase_21 AC 266 ms
29,444 KB
testcase_22 AC 272 ms
30,284 KB
testcase_23 AC 268 ms
29,572 KB
testcase_24 AC 276 ms
29,368 KB
testcase_25 AC 268 ms
29,572 KB
testcase_26 AC 270 ms
29,444 KB
testcase_27 AC 278 ms
29,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if n == 1:
    print(1)

elif n == 2:
    if a[0] < a[1]:
        print(2)
    else:
        print(1)

else:
    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