結果

問題 No.921 ずんだアロー
ユーザー koukou
提出日時 2019-11-08 21:30:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 269 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,700 KB
最終ジャッジ日時 2024-09-15 01:13:13
合計ジャッジ時間 2,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 167 ms
19,804 KB
testcase_11 WA -
testcase_12 AC 63 ms
12,800 KB
testcase_13 AC 137 ms
17,120 KB
testcase_14 AC 148 ms
18,660 KB
testcase_15 AC 103 ms
14,936 KB
testcase_16 AC 40 ms
11,136 KB
testcase_17 AC 155 ms
18,848 KB
testcase_18 WA -
testcase_19 AC 65 ms
20,564 KB
testcase_20 WA -
testcase_21 AC 64 ms
20,564 KB
testcase_22 WA -
testcase_23 AC 182 ms
20,696 KB
testcase_24 AC 64 ms
20,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby

n, *a = map(int, open(0).read().split())
g = [len(list(g)) for k, g in groupby(a)]
ans1 = ans2 = 0
for i, v in enumerate(g):
	if i % 2:
		ans1 += v
		ans2 += max(v - 2, 0)
	else:
		ans1 += max(v - 2, 0)
		ans2 += v
print(max(ans1, ans2))
0