結果

問題 No.1053 ゲーミング棒
ユーザー rlangevinrlangevin
提出日時 2023-04-28 12:36:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 572 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 88,756 KB
最終ジャッジ日時 2024-11-17 13:29:37
合計ジャッジ時間 3,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,036 KB
testcase_01 AC 37 ms
53,932 KB
testcase_02 AC 36 ms
54,476 KB
testcase_03 AC 35 ms
54,604 KB
testcase_04 AC 33 ms
55,256 KB
testcase_05 AC 36 ms
53,716 KB
testcase_06 AC 35 ms
54,048 KB
testcase_07 AC 36 ms
54,036 KB
testcase_08 AC 35 ms
53,576 KB
testcase_09 AC 33 ms
55,288 KB
testcase_10 AC 33 ms
54,056 KB
testcase_11 AC 33 ms
53,988 KB
testcase_12 AC 36 ms
54,664 KB
testcase_13 AC 33 ms
53,488 KB
testcase_14 AC 36 ms
54,040 KB
testcase_15 AC 37 ms
54,784 KB
testcase_16 AC 34 ms
54,900 KB
testcase_17 AC 34 ms
54,244 KB
testcase_18 AC 34 ms
53,168 KB
testcase_19 AC 33 ms
53,708 KB
testcase_20 AC 33 ms
53,572 KB
testcase_21 AC 33 ms
53,712 KB
testcase_22 AC 33 ms
54,236 KB
testcase_23 AC 57 ms
83,432 KB
testcase_24 AC 55 ms
82,704 KB
testcase_25 AC 60 ms
86,912 KB
testcase_26 AC 57 ms
82,644 KB
testcase_27 AC 36 ms
55,256 KB
testcase_28 AC 35 ms
53,748 KB
testcase_29 AC 33 ms
53,996 KB
testcase_30 AC 54 ms
85,680 KB
testcase_31 AC 58 ms
86,500 KB
testcase_32 AC 56 ms
87,208 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 62 ms
88,576 KB
testcase_36 AC 62 ms
88,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
A = list(map(int, input().split()))
if N == 2:
    print(0)
    exit()

ans = 0
if A[0] == A[-1]:
    c = A[0]
    A = deque(A)
    while A:
        if A[0] == c:
            A.popleft()
        else:
            break
    while A:
        if A[-1] == c:
            A.pop()
        else:
            break
    A = list(A)
    if A == []:
        print(0)
        exit()
    ans = 1

seen = [0] * (N + 1)
pre = -1
for a in A:
    if a != pre and seen[a]:
        print(-1)
        exit()
    pre = a
    seen[a] = 1

print(ans)
0