結果

問題 No.1053 ゲーミング棒
ユーザー tentententen
提出日時 2021-01-19 14:51:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 897 bytes
コンパイル時間 2,435 ms
コンパイル使用メモリ 79,340 KB
実行使用メモリ 67,396 KB
最終ジャッジ日時 2024-12-16 09:25:09
合計ジャッジ時間 15,407 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,024 KB
testcase_01 AC 132 ms
41,140 KB
testcase_02 AC 135 ms
41,552 KB
testcase_03 AC 132 ms
41,052 KB
testcase_04 AC 132 ms
41,576 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 132 ms
41,256 KB
testcase_12 AC 132 ms
41,244 KB
testcase_13 WA -
testcase_14 AC 130 ms
41,116 KB
testcase_15 AC 132 ms
41,376 KB
testcase_16 AC 133 ms
41,308 KB
testcase_17 AC 134 ms
41,372 KB
testcase_18 AC 137 ms
41,188 KB
testcase_19 WA -
testcase_20 AC 130 ms
41,052 KB
testcase_21 AC 118 ms
40,040 KB
testcase_22 AC 137 ms
41,248 KB
testcase_23 AC 698 ms
67,396 KB
testcase_24 AC 826 ms
67,184 KB
testcase_25 AC 790 ms
66,844 KB
testcase_26 AC 811 ms
66,084 KB
testcase_27 WA -
testcase_28 AC 134 ms
41,436 KB
testcase_29 AC 135 ms
41,420 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 533 ms
50,384 KB
testcase_34 AC 587 ms
50,616 KB
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		ArrayDeque<Integer> deq = new ArrayDeque<>();
		HashMap<Integer, ArrayList<Integer>> positions = new HashMap<>();
		int idx = 0;
		for (int i = 0; i < n; i++) {
		    int x = sc.nextInt();
		    if (deq.size() == 0 || deq.peekLast() != x) {
		        if (!positions.containsKey(x)) {
		            positions.put(x, new ArrayList<>());
		        }
		        positions.get(x).add(idx);
		        idx++;
		    }
		}
		int count = 0;
		for (ArrayList<Integer> list : positions.values()) {
		    if (list.size() <= 1) {
		        continue;
		    }
		    if (list.size() == 2 && list.get(0) == 0 && list.get(1) == idx - 1) {
		        count++;
		        continue;
		    }
		    System.out.println(-1);
		    return;
		}
		System.out.println(count);
	}
}
0