結果

問題 No.921 ずんだアロー
ユーザー hedwig100hedwig100
提出日時 2020-04-10 13:47:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,888 KB
最終ジャッジ日時 2024-09-15 00:15:59
合計ジャッジ時間 2,658 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 32 ms
10,496 KB
testcase_10 AC 68 ms
19,996 KB
testcase_11 AC 70 ms
20,152 KB
testcase_12 AC 39 ms
12,672 KB
testcase_13 AC 59 ms
17,568 KB
testcase_14 AC 64 ms
18,352 KB
testcase_15 AC 50 ms
15,316 KB
testcase_16 AC 33 ms
11,264 KB
testcase_17 AC 63 ms
18,708 KB
testcase_18 AC 79 ms
20,756 KB
testcase_19 AC 78 ms
20,760 KB
testcase_20 AC 78 ms
20,760 KB
testcase_21 AC 78 ms
20,884 KB
testcase_22 AC 78 ms
20,636 KB
testcase_23 AC 71 ms
20,444 KB
testcase_24 AC 78 ms
20,888 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:
        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