結果

問題 No.1053 ゲーミング棒
ユーザー ああいいああいい
提出日時 2022-02-23 15:04:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 412 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 98,584 KB
最終ジャッジ日時 2024-07-01 14:45:38
合計ジャッジ時間 3,203 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,540 KB
testcase_01 WA -
testcase_02 AC 38 ms
52,764 KB
testcase_03 AC 38 ms
53,892 KB
testcase_04 AC 38 ms
52,196 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 38 ms
52,380 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 38 ms
52,072 KB
testcase_12 AC 38 ms
52,820 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 37 ms
53,100 KB
testcase_16 WA -
testcase_17 AC 38 ms
52,404 KB
testcase_18 AC 38 ms
52,328 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 39 ms
52,484 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 76 ms
96,632 KB
testcase_26 AC 78 ms
97,040 KB
testcase_27 AC 38 ms
52,628 KB
testcase_28 WA -
testcase_29 AC 37 ms
51,880 KB
testcase_30 AC 58 ms
79,448 KB
testcase_31 AC 60 ms
80,140 KB
testcase_32 AC 58 ms
78,620 KB
testcase_33 AC 60 ms
79,012 KB
testcase_34 AC 60 ms
79,428 KB
testcase_35 AC 63 ms
80,708 KB
testcase_36 AC 62 ms
80,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N = int(input())
A = list(map(int,input().split()))
ans = 0
while A and A[-1] == A[0]:
    A.pop()
if not A:
    print(0)
    exit()
ans = 1
s =set()
left = 0
while left < len(A):
    if A[left] not in s:
        s.add(A[left])
        right = left
        while right < len(A) and A[right] == A[left]:
            right += 1
        left = right
    else:
        print(-1)
        exit()
print(ans)
0