結果

問題 No.1053 ゲーミング棒
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-05-15 21:33:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 96,648 KB
最終ジャッジ日時 2024-09-19 09:16:42
合計ジャッジ時間 2,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,328 KB
testcase_01 AC 34 ms
52,228 KB
testcase_02 AC 33 ms
52,696 KB
testcase_03 AC 34 ms
52,696 KB
testcase_04 AC 34 ms
53,816 KB
testcase_05 AC 34 ms
53,068 KB
testcase_06 AC 33 ms
52,292 KB
testcase_07 AC 34 ms
52,464 KB
testcase_08 AC 32 ms
52,068 KB
testcase_09 AC 34 ms
53,316 KB
testcase_10 AC 33 ms
52,352 KB
testcase_11 AC 32 ms
52,708 KB
testcase_12 AC 33 ms
52,312 KB
testcase_13 AC 34 ms
52,480 KB
testcase_14 AC 34 ms
52,380 KB
testcase_15 AC 35 ms
52,364 KB
testcase_16 AC 34 ms
52,324 KB
testcase_17 AC 35 ms
53,692 KB
testcase_18 AC 37 ms
51,904 KB
testcase_19 AC 35 ms
52,948 KB
testcase_20 AC 34 ms
53,300 KB
testcase_21 AC 35 ms
52,632 KB
testcase_22 AC 32 ms
52,752 KB
testcase_23 AC 66 ms
95,640 KB
testcase_24 AC 70 ms
96,060 KB
testcase_25 AC 70 ms
96,648 KB
testcase_26 AC 71 ms
96,260 KB
testcase_27 AC 33 ms
52,368 KB
testcase_28 AC 33 ms
52,684 KB
testcase_29 AC 34 ms
52,872 KB
testcase_30 AC 51 ms
77,588 KB
testcase_31 AC 52 ms
77,916 KB
testcase_32 AC 52 ms
78,132 KB
testcase_33 AC 53 ms
77,392 KB
testcase_34 AC 51 ms
77,536 KB
testcase_35 AC 56 ms
78,284 KB
testcase_36 AC 54 ms
78,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

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

dic = {}

import sys
for i in range(N):

    if A[i] != A[i-1]:

        if A[i] in dic:
            print (-1)
            sys.exit()

        dic[A[i]] = 1

if len(dic) <= 1:
    print (0)
elif A[0] == A[-1]:
    print (1)
else:
    print (0)
0