結果

問題 No.1053 ゲーミング棒
ユーザー googol_S0googol_S0
提出日時 2020-05-15 21:30:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 299 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,472 KB
最終ジャッジ日時 2024-09-19 09:15:44
合計ジャッジ時間 3,102 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 27 ms
10,752 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 WA -
testcase_07 RE -
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 RE -
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 RE -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 29 ms
10,752 KB
testcase_18 RE -
testcase_19 AC 30 ms
10,624 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 28 ms
10,880 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 69 ms
24,292 KB
testcase_27 AC 28 ms
10,880 KB
testcase_28 WA -
testcase_29 AC 29 ms
10,752 KB
testcase_30 AC 50 ms
12,764 KB
testcase_31 AC 70 ms
12,636 KB
testcase_32 AC 70 ms
12,640 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 298 ms
16,416 KB
testcase_36 AC 301 ms
16,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=[False]*N
P=0
if len(set(A))==1:
  print(0)
  exit()
if A[0]==A[-1]:
  for i in range(N-1,-1,-1):
    if A[0]==A[i]:
      del A[i]
  P=1
for i in range(len(A)-1):
  B[A[i]]=True
  if B[A[i+1]-1] and (A[i]!=A[i+1]):
    print(-1)
    exit()
print(P)
0