結果

問題 No.921 ずんだアロー
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-15 19:20:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 81,932 KB
最終ジャッジ日時 2024-11-25 08:21:22
合計ジャッジ時間 2,527 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,196 KB
testcase_01 AC 36 ms
51,876 KB
testcase_02 AC 36 ms
52,404 KB
testcase_03 AC 34 ms
52,144 KB
testcase_04 AC 35 ms
52,616 KB
testcase_05 AC 34 ms
52,696 KB
testcase_06 AC 34 ms
52,592 KB
testcase_07 AC 33 ms
52,076 KB
testcase_08 AC 33 ms
53,116 KB
testcase_09 AC 33 ms
52,328 KB
testcase_10 AC 54 ms
79,024 KB
testcase_11 WA -
testcase_12 AC 43 ms
63,996 KB
testcase_13 AC 50 ms
74,492 KB
testcase_14 AC 51 ms
75,936 KB
testcase_15 AC 47 ms
70,556 KB
testcase_16 AC 40 ms
62,272 KB
testcase_17 AC 52 ms
77,648 KB
testcase_18 AC 56 ms
81,200 KB
testcase_19 AC 58 ms
80,700 KB
testcase_20 WA -
testcase_21 AC 58 ms
80,516 KB
testcase_22 AC 57 ms
81,768 KB
testcase_23 AC 57 ms
80,572 KB
testcase_24 AC 57 ms
81,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
for i in range(n):
    if i%2 == 0:
        ans += 1
    else:
        if i != n-1:
            if A[i-1] == A[i] and A[i] == A[i+1]:
                ans += 1
        else:
            if A[i-1] == A[i]:
                ans += 1
print(ans)
0