結果

問題 No.921 ずんだアロー
ユーザー flippergoflippergo
提出日時 2020-12-25 20:17:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 83,072 KB
最終ジャッジ日時 2024-09-22 13:47:27
合計ジャッジ時間 2,902 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,140 KB
testcase_01 AC 38 ms
52,356 KB
testcase_02 AC 37 ms
52,960 KB
testcase_03 AC 38 ms
52,280 KB
testcase_04 AC 37 ms
53,040 KB
testcase_05 AC 37 ms
52,776 KB
testcase_06 AC 38 ms
52,628 KB
testcase_07 AC 37 ms
52,832 KB
testcase_08 AC 37 ms
53,032 KB
testcase_09 AC 39 ms
53,040 KB
testcase_10 AC 61 ms
80,604 KB
testcase_11 AC 63 ms
82,940 KB
testcase_12 AC 48 ms
66,388 KB
testcase_13 AC 58 ms
75,848 KB
testcase_14 AC 59 ms
77,580 KB
testcase_15 AC 52 ms
72,000 KB
testcase_16 AC 45 ms
62,900 KB
testcase_17 AC 61 ms
80,384 KB
testcase_18 AC 61 ms
81,552 KB
testcase_19 AC 61 ms
82,428 KB
testcase_20 AC 61 ms
81,464 KB
testcase_21 AC 63 ms
81,560 KB
testcase_22 AC 62 ms
81,532 KB
testcase_23 AC 65 ms
83,072 KB
testcase_24 AC 62 ms
81,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
dp = [0 for _ in range(N)]
dp[0]=1
for i in range(1,N):
    if A[i]==A[i-1]:
        dp[i] = dp[i-1]+1
    else:
        dp[i]=dp[i-1]
        if i>=2:
            dp[i]=max(dp[i],dp[i-2]+1)
print(dp[N-1])
0