結果

問題 No.921 ずんだアロー
ユーザー hir355hir355
提出日時 2020-04-03 20:51:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,880 KB
最終ジャッジ日時 2024-07-03 01:14:45
合計ジャッジ時間 3,863 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 35 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 170 ms
19,868 KB
testcase_11 AC 184 ms
20,880 KB
testcase_12 AC 64 ms
13,440 KB
testcase_13 AC 137 ms
17,280 KB
testcase_14 AC 154 ms
18,472 KB
testcase_15 AC 105 ms
16,332 KB
testcase_16 AC 40 ms
11,392 KB
testcase_17 AC 157 ms
18,732 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 186 ms
20,612 KB
testcase_24 AC 102 ms
20,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
l = []
i = 0
while i < n:
    cnt = 1
    while i < n - 1 and a[i] == a[i + 1]:
        cnt += 1
        i += 1
    l.append(cnt)
    i += 1
m = len(l)
dp = [[0] * (m + 1) for _ in range(2)]
dp[0][0] = 0
for i in range(m):
    dp[1][i + 1] = dp[0][i] + l[i]
    dp[0][i + 1] = max(dp[0][i], dp[1][i])
print(max(dp[0][m], dp[1][m]))
0