結果

問題 No.1053 ゲーミング棒
ユーザー ks2mks2m
提出日時 2020-05-15 22:06:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 667 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 77,484 KB
実行使用メモリ 59,592 KB
最終ジャッジ日時 2024-09-19 10:38:43
合計ジャッジ時間 11,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,968 KB
testcase_01 AC 120 ms
53,956 KB
testcase_02 AC 121 ms
54,096 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 121 ms
53,908 KB
testcase_06 AC 124 ms
54,024 KB
testcase_07 AC 127 ms
54,132 KB
testcase_08 AC 120 ms
54,004 KB
testcase_09 AC 106 ms
52,844 KB
testcase_10 AC 124 ms
53,996 KB
testcase_11 AC 125 ms
54,120 KB
testcase_12 AC 128 ms
53,984 KB
testcase_13 AC 126 ms
53,848 KB
testcase_14 AC 128 ms
54,212 KB
testcase_15 AC 127 ms
53,848 KB
testcase_16 AC 116 ms
53,712 KB
testcase_17 AC 121 ms
53,860 KB
testcase_18 AC 121 ms
53,860 KB
testcase_19 AC 116 ms
52,832 KB
testcase_20 AC 121 ms
54,004 KB
testcase_21 AC 119 ms
53,860 KB
testcase_22 AC 115 ms
53,520 KB
testcase_23 AC 466 ms
57,748 KB
testcase_24 AC 541 ms
59,364 KB
testcase_25 AC 600 ms
59,440 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 124 ms
54,048 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 501 ms
59,452 KB
testcase_32 AC 521 ms
59,124 KB
testcase_33 AC 445 ms
57,756 KB
testcase_34 AC 506 ms
59,188 KB
testcase_35 AC 548 ms
59,160 KB
testcase_36 AC 565 ms
59,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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();

		int[] c = new int[n + 1];
		c[a[0]]++;
		for (int i = 1; i < n - 1; i++) {
			if (a[i] != a[i - 1] && c[a[i]] > 0) {
				for (int j = i + 1; j < n; j++) {
					if (a[i] != a[j]) {
						System.out.println(-1);
						return;
					}
				}
				System.out.println(1);
				return;
			}
			c[a[i]]++;
		}
		if (a[0] == a[n - 1]) {
			System.out.println(1);
		} else {
			System.out.println(0);
		}
	}
}
0