結果

問題 No.921 ずんだアロー
ユーザー fukafukatanifukafukatani
提出日時 2019-11-08 22:07:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 402 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,000 KB
最終ジャッジ日時 2024-09-15 01:30:51
合計ジャッジ時間 3,044 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 152 ms
19,864 KB
testcase_11 AC 161 ms
20,600 KB
testcase_12 AC 59 ms
13,312 KB
testcase_13 AC 124 ms
17,284 KB
testcase_14 AC 138 ms
18,592 KB
testcase_15 AC 94 ms
16,200 KB
testcase_16 AC 39 ms
11,392 KB
testcase_17 AC 141 ms
18,860 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 164 ms
20,752 KB
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(i) for i in input().split(" ")]

unique = [1, ]
for i in range(1, n):
    if a[i] == a[i - 1]:
        unique[-1] += 1
    else:
        unique.append(1)

if len(unique) == 1:
    print(unique[0])

dp = [0] * (len(unique) + 1)
dp[0] = 0
dp[1] = unique[0]
dp[2] = unique[1]

for i in range(2, len(unique)):
    dp[i + 1] = unique[i] + max(dp[i - 1], dp[i - 2])

print(max(dp))
0