結果

問題 No.1053 ゲーミング棒
ユーザー megumeguromegumeguro
提出日時 2020-05-16 12:10:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 534 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,880 KB
最終ジャッジ日時 2024-09-22 04:48:53
合計ジャッジ時間 7,253 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,256 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 29 ms
10,880 KB
testcase_20 AC 29 ms
10,880 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 590 ms
20,756 KB
testcase_24 AC 595 ms
20,756 KB
testcase_25 AC 594 ms
20,880 KB
testcase_26 AC 596 ms
20,760 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