結果

問題 No.1053 ゲーミング棒
ユーザー tentententen
提出日時 2021-01-19 14:53:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 976 ms / 2,000 ms
コード長 919 bytes
コンパイル時間 2,776 ms
コンパイル使用メモリ 79,468 KB
実行使用メモリ 72,520 KB
最終ジャッジ日時 2024-05-09 18:06:49
合計ジャッジ時間 16,689 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,452 KB
testcase_01 AC 152 ms
41,432 KB
testcase_02 AC 162 ms
41,568 KB
testcase_03 AC 155 ms
41,220 KB
testcase_04 AC 149 ms
41,880 KB
testcase_05 AC 147 ms
41,592 KB
testcase_06 AC 156 ms
41,360 KB
testcase_07 AC 146 ms
41,032 KB
testcase_08 AC 147 ms
41,444 KB
testcase_09 AC 158 ms
41,500 KB
testcase_10 AC 150 ms
41,344 KB
testcase_11 AC 154 ms
41,636 KB
testcase_12 AC 149 ms
41,452 KB
testcase_13 AC 154 ms
41,448 KB
testcase_14 AC 158 ms
41,480 KB
testcase_15 AC 155 ms
41,620 KB
testcase_16 AC 156 ms
41,496 KB
testcase_17 AC 149 ms
41,432 KB
testcase_18 AC 155 ms
41,648 KB
testcase_19 AC 144 ms
41,232 KB
testcase_20 AC 156 ms
41,572 KB
testcase_21 AC 146 ms
41,444 KB
testcase_22 AC 154 ms
41,776 KB
testcase_23 AC 789 ms
71,392 KB
testcase_24 AC 960 ms
72,248 KB
testcase_25 AC 966 ms
72,520 KB
testcase_26 AC 976 ms
71,220 KB
testcase_27 AC 157 ms
41,360 KB
testcase_28 AC 153 ms
41,664 KB
testcase_29 AC 153 ms
41,404 KB
testcase_30 AC 611 ms
47,748 KB
testcase_31 AC 612 ms
47,756 KB
testcase_32 AC 636 ms
47,732 KB
testcase_33 AC 612 ms
48,004 KB
testcase_34 AC 625 ms
48,088 KB
testcase_35 AC 703 ms
48,076 KB
testcase_36 AC 717 ms
48,212 KB
権限があれば一括ダウンロードができます

ソースコード

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);
		        deq.add(x);
		        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