結果

問題 No.921 ずんだアロー
ユーザー lloyzlloyz
提出日時 2022-03-28 00:50:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,860 KB
最終ジャッジ日時 2024-11-06 17:58:33
合計ジャッジ時間 3,548 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 130 ms
19,840 KB
testcase_11 AC 145 ms
20,848 KB
testcase_12 AC 55 ms
13,184 KB
testcase_13 AC 107 ms
17,132 KB
testcase_14 AC 117 ms
18,576 KB
testcase_15 AC 83 ms
15,548 KB
testcase_16 AC 38 ms
11,136 KB
testcase_17 AC 121 ms
18,836 KB
testcase_18 AC 192 ms
20,860 KB
testcase_19 AC 185 ms
20,860 KB
testcase_20 AC 187 ms
20,860 KB
testcase_21 AC 188 ms
20,736 KB
testcase_22 AC 189 ms
20,732 KB
testcase_23 AC 141 ms
20,652 KB
testcase_24 AC 186 ms
20,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

DP = [0 for i in range(n)]
DP[0] = DP[1] = 1
for i in range(1, n):
    if A[i] == A[i - 1]:
        DP[i] = max(DP[i], DP[i - 1] + 1)
    if i > 1:
        DP[i] = max(DP[i], DP[i - 2] + 1)
print(DP[n - 1])
0