結果

問題 No.921 ずんだアロー
ユーザー hedwig100hedwig100
提出日時 2020-04-10 13:46:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 530 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,016 KB
最終ジャッジ日時 2024-09-15 00:14:20
合計ジャッジ時間 2,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 RE -
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 39 ms
12,800 KB
testcase_13 RE -
testcase_14 AC 63 ms
18,472 KB
testcase_15 AC 50 ms
15,316 KB
testcase_16 AC 33 ms
11,264 KB
testcase_17 RE -
testcase_18 AC 80 ms
20,760 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 81 ms
20,888 KB
testcase_23 RE -
testcase_24 AC 81 ms
20,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 10
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from collections import deque
from heapq import heapify,heappush,heappop

def main():
    n = int(input())
    a = list(map(int,input().split())) + [-1]

    ans = (n + 1)//2
    cnt = 0
    i = 0
    while i < n + 1:
        if a[i] == a[i + 1]:
            i += 1
            cnt += 1
        else:
            i += 2
            cnt += 1 
    ans = max(ans,cnt)
    print(ans)


if __name__ =='__main__':
    main()  
0