結果

問題 No.921 ずんだアロー
ユーザー yakeshibayakeshiba
提出日時 2020-10-31 23:38:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 449 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 90,512 KB
最終ジャッジ日時 2024-07-22 05:28:23
合計ジャッジ時間 3,025 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,760 KB
testcase_01 WA -
testcase_02 AC 39 ms
52,264 KB
testcase_03 AC 38 ms
52,064 KB
testcase_04 AC 38 ms
53,816 KB
testcase_05 AC 37 ms
52,136 KB
testcase_06 AC 38 ms
52,388 KB
testcase_07 AC 39 ms
53,332 KB
testcase_08 AC 39 ms
52,440 KB
testcase_09 AC 38 ms
52,484 KB
testcase_10 AC 69 ms
86,268 KB
testcase_11 WA -
testcase_12 AC 48 ms
66,736 KB
testcase_13 AC 64 ms
82,120 KB
testcase_14 AC 66 ms
84,080 KB
testcase_15 AC 57 ms
74,436 KB
testcase_16 AC 47 ms
62,564 KB
testcase_17 AC 67 ms
85,360 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 71 ms
88,432 KB
testcase_24 AC 63 ms
80,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

groups = []
for i, a in enumerate(A):
    if i == 0:
        prev = a
        cnt = 1
        continue
    if a != prev:
        groups.append(cnt)
        prev = a
        cnt = 1
    else:
        cnt += 1
groups.append(cnt)

#print(groups)

tmp = 0
tmp2 = 0
for i in range(0,len(groups),2):
    tmp += groups[i]
for i in range(1,len(groups),2):
    tmp2 += groups[i]
    
print(max(tmp, tmp2))
0