結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,480 KB
testcase_01 AC 121 ms
41,452 KB
testcase_02 AC 125 ms
41,536 KB
testcase_03 AC 126 ms
41,748 KB
testcase_04 AC 129 ms
41,284 KB
testcase_05 AC 125 ms
41,432 KB
testcase_06 AC 119 ms
41,380 KB
testcase_07 AC 121 ms
41,412 KB
testcase_08 AC 125 ms
41,436 KB
testcase_09 AC 110 ms
41,632 KB
testcase_10 AC 122 ms
41,504 KB
testcase_11 AC 125 ms
41,452 KB
testcase_12 AC 137 ms
41,468 KB
testcase_13 AC 124 ms
41,320 KB
testcase_14 AC 138 ms
41,472 KB
testcase_15 AC 132 ms
41,580 KB
testcase_16 AC 135 ms
41,640 KB
testcase_17 AC 105 ms
41,324 KB
testcase_18 AC 127 ms
41,628 KB
testcase_19 AC 133 ms
41,212 KB
testcase_20 AC 129 ms
41,756 KB
testcase_21 AC 128 ms
41,472 KB
testcase_22 AC 126 ms
41,632 KB
testcase_23 AC 765 ms
70,204 KB
testcase_24 AC 771 ms
72,688 KB
testcase_25 AC 779 ms
72,564 KB
testcase_26 AC 704 ms
71,640 KB
testcase_27 AC 122 ms
41,060 KB
testcase_28 AC 111 ms
41,600 KB
testcase_29 AC 123 ms
41,412 KB
testcase_30 AC 447 ms
48,104 KB
testcase_31 AC 505 ms
48,184 KB
testcase_32 AC 499 ms
47,848 KB
testcase_33 AC 445 ms
48,120 KB
testcase_34 AC 563 ms
47,916 KB
testcase_35 AC 567 ms
48,096 KB
testcase_36 AC 595 ms
48,308 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