結果

問題 No.921 ずんだアロー
ユーザー toyuzukotoyuzuko
提出日時 2020-03-30 22:33:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,896 KB
最終ジャッジ日時 2024-06-23 05:30:26
合計ジャッジ時間 3,795 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 24 ms
10,624 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 160 ms
24,724 KB
testcase_11 AC 169 ms
26,324 KB
testcase_12 AC 53 ms
13,952 KB
testcase_13 AC 116 ms
21,864 KB
testcase_14 AC 125 ms
23,004 KB
testcase_15 AC 85 ms
18,156 KB
testcase_16 AC 33 ms
11,648 KB
testcase_17 AC 142 ms
23,796 KB
testcase_18 AC 185 ms
26,212 KB
testcase_19 AC 193 ms
26,216 KB
testcase_20 AC 187 ms
26,344 KB
testcase_21 AC 184 ms
26,216 KB
testcase_22 AC 191 ms
26,212 KB
testcase_23 AC 166 ms
26,896 KB
testcase_24 AC 184 ms
26,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0, 0] for _ in range(N)]
dp[0][0] = 0
dp[0][1] = 1

for i in range(1, N):
    dp[i][0] = max(dp[i - 1])
    if A[i] == A[i - 1]:
        dp[i][1] = max(dp[i - 1]) + 1
    else:
        dp[i][1] = dp[i - 1][0] + 1
        
print(max(dp[-1]))
0