結果

問題 No.921 ずんだアロー
ユーザー ああいいああいい
提出日時 2022-05-17 10:46:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 340 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 103,680 KB
最終ジャッジ日時 2024-09-15 04:47:47
合計ジャッジ時間 2,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 43 ms
51,840 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 42 ms
51,968 KB
testcase_09 AC 41 ms
51,584 KB
testcase_10 AC 100 ms
101,248 KB
testcase_11 AC 103 ms
103,680 KB
testcase_12 AC 58 ms
68,352 KB
testcase_13 AC 76 ms
85,888 KB
testcase_14 AC 79 ms
89,856 KB
testcase_15 AC 69 ms
78,592 KB
testcase_16 AC 53 ms
63,104 KB
testcase_17 AC 80 ms
92,160 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 103 ms
103,424 KB
testcase_24 AC 70 ms
79,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

l = []
l.append(1)
for i in range(1,N):
    if A[i] == A[i-1]:
        l[-1] += 1
    else:
        l.append(1)
n = len(l)
dp = [[0] * 2 for _ in range(n)]
dp[0][1] = l[0]
for i in range(1,n):
    dp[i][0] = max(dp[i-1][1],dp[i-1][0])
    dp[i][1] = dp[i-1][0] + l[i]
print(max(dp[-1]))
0