結果

問題 No.921 ずんだアロー
ユーザー ntudantuda
提出日時 2024-05-22 21:37:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 81,624 KB
最終ジャッジ日時 2024-05-22 21:37:30
合計ジャッジ時間 3,138 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,100 KB
testcase_01 AC 36 ms
53,304 KB
testcase_02 AC 37 ms
52,856 KB
testcase_03 AC 37 ms
52,120 KB
testcase_04 AC 36 ms
52,688 KB
testcase_05 AC 37 ms
52,900 KB
testcase_06 AC 36 ms
52,128 KB
testcase_07 AC 37 ms
53,180 KB
testcase_08 AC 37 ms
52,648 KB
testcase_09 AC 35 ms
51,820 KB
testcase_10 AC 60 ms
80,572 KB
testcase_11 AC 60 ms
80,820 KB
testcase_12 AC 44 ms
64,556 KB
testcase_13 AC 55 ms
76,044 KB
testcase_14 AC 57 ms
77,152 KB
testcase_15 AC 53 ms
70,448 KB
testcase_16 AC 44 ms
60,428 KB
testcase_17 AC 58 ms
78,784 KB
testcase_18 AC 60 ms
80,456 KB
testcase_19 AC 61 ms
80,424 KB
testcase_20 AC 59 ms
81,624 KB
testcase_21 AC 61 ms
80,628 KB
testcase_22 AC 60 ms
80,444 KB
testcase_23 AC 61 ms
81,496 KB
testcase_24 AC 61 ms
81,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def zunda():
    global cnt, f
    cnt += 1
    f = 1

N = int(input())
A = list(map(int, input().split()))
cnt = 0
f = 0
for i in range(N):
    if i == 0:
        zunda()
    elif f == 0:
        zunda()
    elif A[i - 1] == A[i]:
        zunda()
    else:
        f = 0
print(cnt)
0