結果

問題 No.921 ずんだアロー
ユーザー timitimi
提出日時 2021-01-06 10:16:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,988 KB
最終ジャッジ日時 2024-11-06 19:37:19
合計ジャッジ時間 2,942 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 105 ms
19,968 KB
testcase_11 AC 106 ms
20,988 KB
testcase_12 AC 47 ms
12,672 KB
testcase_13 AC 88 ms
17,264 KB
testcase_14 AC 92 ms
18,576 KB
testcase_15 AC 68 ms
15,476 KB
testcase_16 AC 37 ms
11,264 KB
testcase_17 AC 94 ms
18,844 KB
testcase_18 AC 136 ms
20,856 KB
testcase_19 AC 144 ms
20,856 KB
testcase_20 AC 138 ms
20,856 KB
testcase_21 AC 150 ms
20,856 KB
testcase_22 AC 138 ms
20,728 KB
testcase_23 AC 113 ms
20,664 KB
testcase_24 AC 150 ms
20,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
d=0
if N==1:
  print(1)
  exit()
s=0
ansa,ansb=1,1
while s+1<N:
  if A[s]==A[s+1]:
    s+=1
    ansa+=1
  else:
    if s<N-2:
      s+=2
      ansa+=1
    else:
      break
s=1
while s+1<N:
  if A[s]==A[s+1]:
    s+=1
    ansb+=1
  else:
    if s-2<N:
      s+=2
      ansb+=1
    else:
      break

print(ansa)
0