結果

問題 No.921 ずんだアロー
ユーザー mlihua09mlihua09
提出日時 2020-09-17 16:07:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 82,916 KB
最終ジャッジ日時 2024-06-22 06:35:03
合計ジャッジ時間 3,317 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,548 KB
testcase_01 AC 36 ms
52,532 KB
testcase_02 AC 34 ms
52,204 KB
testcase_03 AC 33 ms
52,832 KB
testcase_04 AC 34 ms
52,628 KB
testcase_05 AC 33 ms
52,680 KB
testcase_06 AC 34 ms
53,980 KB
testcase_07 AC 34 ms
53,248 KB
testcase_08 AC 32 ms
53,684 KB
testcase_09 AC 33 ms
53,556 KB
testcase_10 AC 55 ms
80,132 KB
testcase_11 AC 58 ms
82,124 KB
testcase_12 AC 41 ms
64,172 KB
testcase_13 AC 55 ms
76,032 KB
testcase_14 AC 55 ms
77,704 KB
testcase_15 AC 48 ms
70,188 KB
testcase_16 AC 40 ms
60,596 KB
testcase_17 AC 57 ms
78,724 KB
testcase_18 AC 59 ms
82,592 KB
testcase_19 AC 55 ms
82,740 KB
testcase_20 AC 56 ms
82,604 KB
testcase_21 AC 56 ms
82,916 KB
testcase_22 AC 59 ms
82,544 KB
testcase_23 AC 57 ms
82,560 KB
testcase_24 AC 56 ms
81,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

ans1 = 1
ans2 = 0

A = list(map(int, input().split())) + [0]

for i in range(N):
    if A[i + 1] == A[i]:
        ans1, ans2 = max(ans1, ans2) + 1, max(ans1, ans2)
        
    else:
        ans1, ans2 = ans2 + 1, max(ans1, ans2)
        
print(ans2)
0