結果

問題 No.921 ずんだアロー
ユーザー yakeshibayakeshiba
提出日時 2020-10-31 23:46:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 87,504 KB
最終ジャッジ日時 2024-07-22 05:28:36
合計ジャッジ時間 2,466 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,036 KB
testcase_01 AC 39 ms
52,876 KB
testcase_02 AC 39 ms
52,952 KB
testcase_03 AC 39 ms
52,632 KB
testcase_04 AC 39 ms
52,432 KB
testcase_05 AC 39 ms
52,488 KB
testcase_06 AC 38 ms
52,860 KB
testcase_07 AC 39 ms
52,692 KB
testcase_08 AC 39 ms
52,548 KB
testcase_09 AC 39 ms
53,960 KB
testcase_10 AC 64 ms
84,036 KB
testcase_11 AC 65 ms
86,424 KB
testcase_12 AC 47 ms
65,508 KB
testcase_13 AC 60 ms
79,208 KB
testcase_14 AC 61 ms
81,648 KB
testcase_15 AC 54 ms
73,612 KB
testcase_16 AC 45 ms
60,912 KB
testcase_17 AC 62 ms
83,348 KB
testcase_18 AC 62 ms
81,772 KB
testcase_19 AC 63 ms
80,392 KB
testcase_20 AC 63 ms
82,076 KB
testcase_21 AC 62 ms
82,308 KB
testcase_22 AC 63 ms
80,996 KB
testcase_23 AC 66 ms
87,504 KB
testcase_24 AC 63 ms
81,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def zunda(L):
    ret = 1
    prev = L[0]
    skip = True
    for i in range(1,len(L)):
        if not skip:
            ret += 1
            prev = L[i]
            skip = True
        else:
            if prev == L[i]:
                ret += 1
            else:
                skip = False
    return ret
    
print(max(zunda(A), zunda(A[::-1])))
0