結果

問題 No.1053 ゲーミング棒
ユーザー megumeguromegumeguro
提出日時 2020-05-16 12:10:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 534 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 288,800 KB
最終ジャッジ日時 2024-09-22 04:49:11
合計ジャッジ時間 6,228 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
61,532 KB
testcase_01 AC 41 ms
54,216 KB
testcase_02 AC 40 ms
53,880 KB
testcase_03 AC 40 ms
53,880 KB
testcase_04 AC 41 ms
54,604 KB
testcase_05 AC 41 ms
54,124 KB
testcase_06 AC 40 ms
53,980 KB
testcase_07 AC 41 ms
54,148 KB
testcase_08 AC 41 ms
55,028 KB
testcase_09 AC 40 ms
54,480 KB
testcase_10 AC 41 ms
54,124 KB
testcase_11 AC 41 ms
54,304 KB
testcase_12 AC 40 ms
53,944 KB
testcase_13 AC 40 ms
53,484 KB
testcase_14 AC 40 ms
54,376 KB
testcase_15 AC 40 ms
55,128 KB
testcase_16 AC 40 ms
53,880 KB
testcase_17 AC 41 ms
53,600 KB
testcase_18 AC 40 ms
54,556 KB
testcase_19 AC 41 ms
54,308 KB
testcase_20 AC 40 ms
53,928 KB
testcase_21 AC 40 ms
55,212 KB
testcase_22 AC 40 ms
54,772 KB
testcase_23 AC 257 ms
93,192 KB
testcase_24 AC 258 ms
93,384 KB
testcase_25 AC 258 ms
93,276 KB
testcase_26 AC 261 ms
93,184 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
from collections import deque
N = int(input())
A = list(map(int,input().split()))

A = deque(A)
cnt = 0
while True:
    a1 = A.popleft()
    if a1 == A[-1]:
        A.append(a1)
        cnt += 1
    else:
        A = deque([a1]) + A
        break
#print(A)
L = [False] * (N+1)
a = [A[0]]
for i in range(N-1):
    if A[i+1] != A[i]:
        a.append(A[i+1])
    #print(A)
flg = True
for i in range(len(a)):
    if L[a[i]]:
        flg = False
    else:
        L[a[i]] = True

if flg:
    print(cnt)
else:
    print(-1)
0