結果

問題 No.1053 ゲーミング棒
ユーザー kurimupykurimupy
提出日時 2020-06-12 22:30:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,364 KB
最終ジャッジ日時 2024-06-24 05:21:03
合計ジャッジ時間 2,895 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 93 ms
24,316 KB
testcase_24 AC 96 ms
24,360 KB
testcase_25 AC 95 ms
24,364 KB
testcase_26 AC 97 ms
24,288 KB
testcase_27 AC 30 ms
10,880 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 31 ms
10,880 KB
testcase_30 AC 65 ms
12,772 KB
testcase_31 AC 65 ms
12,772 KB
testcase_32 AC 66 ms
12,648 KB
testcase_33 AC 67 ms
12,648 KB
testcase_34 AC 65 ms
12,644 KB
testcase_35 AC 73 ms
16,576 KB
testcase_36 AC 73 ms
17,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# problem 1
N = int(input())
K = list(map(int, input().split()))
d = []
d.append(K[0])
for i in range(1, N):
    if K[i] == d[-1]:
        pass
    else:
        d.append(K[i])
ALL = len(d)

# 施行は行われても一回までである

if d[0] == d[-1]:
    if len(d) == 1:
        print(0)
        exit()
    else:
        del d[0]
        if len(d) == len(set(d)):
            print(1)
        else:
            print(-1)
        exit()

else:
    if ALL == len(set(d)):
        print(0)
    else:
        print(-1)
    exit()
0