結果

問題 No.921 ずんだアロー
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-06-25 09:46:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 81,760 KB
最終ジャッジ日時 2024-11-14 04:51:38
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,676 KB
testcase_01 AC 37 ms
51,820 KB
testcase_02 AC 37 ms
52,432 KB
testcase_03 AC 37 ms
52,396 KB
testcase_04 AC 37 ms
52,296 KB
testcase_05 AC 37 ms
52,340 KB
testcase_06 AC 36 ms
52,248 KB
testcase_07 AC 37 ms
53,144 KB
testcase_08 AC 36 ms
53,016 KB
testcase_09 AC 39 ms
52,140 KB
testcase_10 AC 58 ms
79,008 KB
testcase_11 AC 60 ms
81,228 KB
testcase_12 AC 45 ms
63,440 KB
testcase_13 AC 54 ms
74,396 KB
testcase_14 AC 55 ms
76,264 KB
testcase_15 AC 50 ms
70,324 KB
testcase_16 AC 43 ms
61,784 KB
testcase_17 AC 59 ms
78,684 KB
testcase_18 AC 60 ms
80,432 KB
testcase_19 AC 61 ms
81,760 KB
testcase_20 AC 61 ms
80,932 KB
testcase_21 AC 60 ms
79,956 KB
testcase_22 AC 61 ms
80,864 KB
testcase_23 AC 60 ms
80,340 KB
testcase_24 AC 58 ms
80,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
ans = 0
last = -1
for a in A:
    if a == last:
        ans += 1
    elif last == -1:
        last = a
        ans += 1
    else:
        last = -1
print(ans)
0