結果

問題 No.1053 ゲーミング棒
ユーザー ks2mks2m
提出日時 2020-05-15 22:16:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 643 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 3,126 ms
コンパイル使用メモリ 80,000 KB
実行使用メモリ 53,844 KB
最終ジャッジ日時 2024-09-19 10:55:26
合計ジャッジ時間 12,528 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,100 KB
testcase_01 AC 111 ms
40,120 KB
testcase_02 AC 121 ms
41,096 KB
testcase_03 AC 115 ms
40,116 KB
testcase_04 AC 117 ms
39,852 KB
testcase_05 AC 124 ms
41,516 KB
testcase_06 AC 120 ms
40,932 KB
testcase_07 AC 124 ms
41,044 KB
testcase_08 AC 126 ms
41,280 KB
testcase_09 AC 106 ms
40,108 KB
testcase_10 AC 125 ms
41,112 KB
testcase_11 AC 119 ms
40,028 KB
testcase_12 AC 120 ms
41,064 KB
testcase_13 AC 119 ms
41,148 KB
testcase_14 AC 108 ms
40,064 KB
testcase_15 AC 120 ms
41,156 KB
testcase_16 AC 120 ms
41,140 KB
testcase_17 AC 124 ms
41,076 KB
testcase_18 AC 128 ms
41,264 KB
testcase_19 AC 127 ms
41,356 KB
testcase_20 AC 129 ms
41,056 KB
testcase_21 AC 129 ms
41,132 KB
testcase_22 AC 132 ms
41,004 KB
testcase_23 AC 555 ms
53,136 KB
testcase_24 AC 617 ms
53,628 KB
testcase_25 AC 643 ms
53,708 KB
testcase_26 AC 624 ms
53,844 KB
testcase_27 AC 125 ms
41,356 KB
testcase_28 AC 121 ms
39,940 KB
testcase_29 AC 114 ms
40,256 KB
testcase_30 AC 517 ms
48,272 KB
testcase_31 AC 514 ms
48,376 KB
testcase_32 AC 552 ms
48,348 KB
testcase_33 AC 497 ms
48,136 KB
testcase_34 AC 507 ms
48,116 KB
testcase_35 AC 513 ms
48,396 KB
testcase_36 AC 573 ms
48,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Scanner;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		List<Integer> list = new ArrayList<>();
		list.add(a[0]);
		for (int i = 1; i < n; i++) {
			if (a[i - 1] != a[i]) {
				list.add(a[i]);
			}
		}
		Set<Integer> set = new HashSet<>();
		for (Integer o : list) {
			set.add(o);
		}
		if (set.size() == list.size()) {
			System.out.println(0);
		} else {
			if (set.size() + 1 == list.size() &&
					list.get(0).equals(list.get(list.size() - 1))) {
				System.out.println(1);
			} else {
				System.out.println(-1);
			}
		}
	}
}
0