結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 97 ms
19,988 KB
testcase_11 AC 103 ms
20,884 KB
testcase_12 AC 45 ms
12,604 KB
testcase_13 AC 81 ms
17,540 KB
testcase_14 AC 90 ms
18,468 KB
testcase_15 AC 66 ms
15,368 KB
testcase_16 AC 34 ms
11,392 KB
testcase_17 AC 91 ms
18,724 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 106 ms
20,548 KB
testcase_24 AC 110 ms
20,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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