結果

問題 No.1053 ゲーミング棒
ユーザー takakintakakin
提出日時 2020-06-09 22:03:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,404 KB
最終ジャッジ日時 2024-06-10 22:34:27
合計ジャッジ時間 3,274 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 25 ms
10,624 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 25 ms
10,624 KB
testcase_13 AC 24 ms
10,624 KB
testcase_14 AC 26 ms
10,624 KB
testcase_15 AC 25 ms
10,496 KB
testcase_16 AC 26 ms
10,624 KB
testcase_17 AC 25 ms
10,624 KB
testcase_18 AC 24 ms
10,624 KB
testcase_19 AC 26 ms
10,752 KB
testcase_20 AC 25 ms
10,752 KB
testcase_21 AC 24 ms
10,752 KB
testcase_22 AC 25 ms
10,752 KB
testcase_23 AC 97 ms
23,404 KB
testcase_24 AC 102 ms
23,392 KB
testcase_25 AC 111 ms
23,264 KB
testcase_26 AC 110 ms
23,368 KB
testcase_27 AC 25 ms
10,624 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 25 ms
10,624 KB
testcase_30 AC 51 ms
12,644 KB
testcase_31 AC 69 ms
12,516 KB
testcase_32 AC 65 ms
12,516 KB
testcase_33 AC 60 ms
12,648 KB
testcase_34 AC 64 ms
12,516 KB
testcase_35 AC 71 ms
16,428 KB
testcase_36 AC 69 ms
16,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
A=[int(i) for i in input().split()]
if n<=2:
  print(0)
elif len(set(A))==1:
  print(0)
else:
  chk=0
  while True:
    if A[-1]==A[0]:
      A.pop()
      chk=1
    else:
      break
  prev=0
  C=set()
  for i,a in enumerate(A):
    if a==prev:
      continue
    else:
      if a in C:
        print(-1)
        break
      else:
        C.add(a)
        prev=a
  else:
    print(chk)

0