結果

問題 No.921 ずんだアロー
ユーザー polylogKpolylogK
提出日時 2019-09-12 20:46:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 455 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,256 KB
最終ジャッジ日時 2024-09-15 05:47:55
合計ジャッジ時間 3,824 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 32 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 264 ms
27,576 KB
testcase_11 AC 279 ms
28,732 KB
testcase_12 AC 83 ms
14,336 KB
testcase_13 AC 199 ms
23,444 KB
testcase_14 AC 228 ms
25,344 KB
testcase_15 AC 144 ms
19,148 KB
testcase_16 AC 46 ms
11,776 KB
testcase_17 AC 231 ms
25,632 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 286 ms
29,256 KB
testcase_24 AC 86 ms
20,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

now = 0
tmp = 0
vec = list()
for i in range(0, N):
	if now == A[i]:
		tmp = tmp + 1
	else:
		if tmp > 0:
			vec.append(tmp)
		now = A[i]
		tmp = 1
if tmp > 0:
	vec.append(tmp)

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