結果

問題 No.1053 ゲーミング棒
ユーザー ks2mks2m
提出日時 2020-05-15 21:57:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 503 bytes
コンパイル時間 2,088 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 59,428 KB
最終ジャッジ日時 2024-09-19 10:20:24
合計ジャッジ時間 11,892 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,364 KB
testcase_01 AC 118 ms
40,092 KB
testcase_02 AC 135 ms
41,392 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 119 ms
40,456 KB
testcase_06 WA -
testcase_07 AC 118 ms
41,532 KB
testcase_08 WA -
testcase_09 AC 120 ms
41,404 KB
testcase_10 WA -
testcase_11 AC 107 ms
41,372 KB
testcase_12 AC 116 ms
41,368 KB
testcase_13 WA -
testcase_14 AC 120 ms
41,528 KB
testcase_15 AC 120 ms
41,620 KB
testcase_16 AC 121 ms
40,180 KB
testcase_17 AC 108 ms
41,668 KB
testcase_18 AC 106 ms
41,636 KB
testcase_19 WA -
testcase_20 AC 120 ms
39,964 KB
testcase_21 AC 121 ms
41,496 KB
testcase_22 AC 122 ms
41,228 KB
testcase_23 AC 473 ms
48,216 KB
testcase_24 AC 515 ms
48,296 KB
testcase_25 AC 578 ms
48,724 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 122 ms
41,156 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 423 ms
48,264 KB
testcase_34 AC 478 ms
48,608 KB
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

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];
		for (int i = 0; i < n - 1; i++) {
			if (c[a[i]]++ > 0) {
				System.out.println(-1);
				return;
			}
		}
		if (a[0] == a[n - 1]) {
			System.out.println(1);
		} else {
			System.out.println(0);
		}
	}
}
0