結果

問題 No.921 ずんだアロー
ユーザー daku9640daku9640
提出日時 2019-11-08 21:48:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 470 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,876 KB
最終ジャッジ日時 2024-09-15 01:24:27
合計ジャッジ時間 2,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 89 ms
19,860 KB
testcase_11 AC 94 ms
20,760 KB
testcase_12 AC 43 ms
12,736 KB
testcase_13 AC 76 ms
17,548 KB
testcase_14 AC 82 ms
18,464 KB
testcase_15 AC 60 ms
15,676 KB
testcase_16 AC 34 ms
11,264 KB
testcase_17 AC 83 ms
18,808 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 96 ms
20,552 KB
testcase_24 AC 88 ms
20,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    A = [0] + list(map(int, input().split())) + [0]
    B = [False] * (n + 2)
    for i in range(2, n + 1):
        if A[i - 1] == A[i]:
            B[i - 1] = B[i] = True
    C = B[:]
    for i in range(1, n + 1):
        if not B[i] and not (B[i - 1] or B[i + 1]):
            B[i] = True
    for i in range(2, n + 1):
        if not C[i] and not (C[i - 1] or C[i + 1]):
            C[i] = True
    print(max(sum(B), sum(C)))
solve()
0