結果

問題 No.1053 ゲーミング棒
ユーザー kurimupykurimupy
提出日時 2020-06-12 22:28:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,372 KB
最終ジャッジ日時 2024-06-24 05:19:42
合計ジャッジ時間 3,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 33 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 98 ms
24,372 KB
testcase_24 AC 101 ms
24,232 KB
testcase_25 AC 97 ms
24,344 KB
testcase_26 AC 97 ms
24,312 KB
testcase_27 WA -
testcase_28 AC 31 ms
10,752 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 67 ms
12,648 KB
testcase_32 AC 67 ms
12,648 KB
testcase_33 AC 68 ms
12,776 KB
testcase_34 AC 66 ms
12,644 KB
testcase_35 AC 74 ms
16,572 KB
testcase_36 AC 74 ms
17,084 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) == 0:
        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