結果
問題 | No.1053 ゲーミング棒 |
ユーザー | ああいい |
提出日時 | 2022-02-23 15:04:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 401 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 82,400 KB |
実行使用メモリ | 96,960 KB |
最終ジャッジ日時 | 2024-07-01 14:44:57 |
合計ジャッジ時間 | 3,640 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 38 ms
51,712 KB |
testcase_03 | AC | 38 ms
51,456 KB |
testcase_04 | AC | 38 ms
51,840 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 38 ms
51,840 KB |
testcase_12 | AC | 38 ms
51,840 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 38 ms
52,096 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 38 ms
52,096 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 79 ms
95,616 KB |
testcase_27 | AC | 38 ms
51,584 KB |
testcase_28 | WA | - |
testcase_29 | AC | 38 ms
51,584 KB |
testcase_30 | AC | 59 ms
78,080 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 60 ms
78,336 KB |
testcase_34 | AC | 59 ms
78,208 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
import sys N = int(input()) A = list(map(int,input().split())) ans = 0 while A and A[-1] == A[0]: A.pop() if not A: print(0) exit() ans = 1 s =set() left = 0 while left < len(A): if A[left] not in s: s.add(A[left]) right = left while right < len(A) and A[right] == A[left]: right += 1 left = right else: print(-1) exit()