結果

問題 No.921 ずんだアロー
ユーザー TS_KAsTS_KAs
提出日時 2019-11-08 23:07:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 85,664 KB
最終ジャッジ日時 2024-09-15 02:15:50
合計ジャッジ時間 2,732 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
51,584 KB
testcase_07 AC 38 ms
51,456 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 46 ms
63,360 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 54 ms
70,400 KB
testcase_16 AC 46 ms
60,288 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 67 ms
82,584 KB
testcase_24 AC 64 ms
82,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [0] + list(map(int, input().split())) + [0]
ans = 0
X = 0
Y = 0
for i in range(N+1):
    if A[i] != A[i+1]:
        X += 1
        if Y >= 2:
            ans += Y+1
            Y = 0
        else:
            Y = 0
    if A[i] == A[i+1]:
        Y += 1
        if X > 2:
            ans += abs(X-2)//2
        X = 0
if X == N + 1:
    print(X//2)
else:
    print(ans)
    
        
0