結果

問題 No.921 ずんだアロー
ユーザー titiatitia
提出日時 2019-11-08 22:01:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,732 KB
最終ジャッジ日時 2024-09-15 01:29:08
合計ジャッジ時間 3,035 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 179 ms
22,604 KB
testcase_11 AC 191 ms
23,556 KB
testcase_12 AC 64 ms
13,568 KB
testcase_13 AC 142 ms
19,732 KB
testcase_14 AC 165 ms
21,088 KB
testcase_15 AC 108 ms
16,828 KB
testcase_16 AC 39 ms
11,264 KB
testcase_17 AC 166 ms
21,428 KB
testcase_18 AC 76 ms
20,860 KB
testcase_19 AC 78 ms
20,736 KB
testcase_20 AC 76 ms
20,736 KB
testcase_21 AC 75 ms
20,740 KB
testcase_22 AC 79 ms
20,736 KB
testcase_23 AC 195 ms
23,732 KB
testcase_24 AC 76 ms
20,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

NOW=-1
count=0
LIST=[]

for a in A:
    if NOW==a:
        count+=1
    else:
        LIST.append((NOW,count))
        NOW=a
        count=1

DP=[0]*len(LIST)

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

print(max(DP))
0