結果

問題 No.1053 ゲーミング棒
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-15 21:52:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 655 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 117,632 KB
最終ジャッジ日時 2024-09-19 09:38:33
合計ジャッジ時間 2,997 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 39 ms
53,376 KB
testcase_02 AC 36 ms
53,504 KB
testcase_03 AC 38 ms
53,888 KB
testcase_04 AC 37 ms
54,016 KB
testcase_05 AC 37 ms
53,632 KB
testcase_06 AC 35 ms
53,248 KB
testcase_07 AC 35 ms
54,016 KB
testcase_08 AC 36 ms
53,632 KB
testcase_09 AC 36 ms
53,248 KB
testcase_10 AC 37 ms
53,376 KB
testcase_11 AC 38 ms
53,288 KB
testcase_12 AC 40 ms
53,888 KB
testcase_13 AC 38 ms
53,504 KB
testcase_14 AC 38 ms
54,016 KB
testcase_15 AC 39 ms
53,632 KB
testcase_16 AC 39 ms
53,504 KB
testcase_17 AC 41 ms
53,760 KB
testcase_18 AC 38 ms
53,760 KB
testcase_19 AC 36 ms
53,504 KB
testcase_20 AC 37 ms
53,376 KB
testcase_21 AC 43 ms
53,632 KB
testcase_22 AC 39 ms
53,968 KB
testcase_23 AC 93 ms
117,632 KB
testcase_24 AC 93 ms
117,504 KB
testcase_25 AC 89 ms
117,632 KB
testcase_26 AC 94 ms
116,992 KB
testcase_27 AC 35 ms
52,096 KB
testcase_28 AC 38 ms
53,484 KB
testcase_29 AC 34 ms
52,096 KB
testcase_30 AC 52 ms
76,288 KB
testcase_31 AC 63 ms
85,248 KB
testcase_32 AC 60 ms
83,712 KB
testcase_33 AC 65 ms
85,248 KB
testcase_34 AC 62 ms
85,120 KB
testcase_35 AC 67 ms
86,400 KB
testcase_36 AC 66 ms
86,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

if len(set(A)) == 1:
    print(0)
    exit()

from collections import deque
B = deque(A)
temp = A[0]
flag = False
while True:
    x = B.pop()
    if x != temp:
        B.append(x)
        break
    else:
        B.appendleft(x)
        flag = True

if flag:
    ans = 1
else:
    ans = 0

S = set()
C = list(B)
temp = C[0]
for i in range(n):
    if C[i] != temp:
        if C[i] in S:
            print(-1)
            exit()
        else:
            S.add(temp)
            temp = C[i]
else:
    print(ans)
0