結果

問題 No.1053 ゲーミング棒
ユーザー jp_stejp_ste
提出日時 2020-05-15 22:29:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 566 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 1,871 ms
コンパイル使用メモリ 76,724 KB
実行使用メモリ 48,908 KB
最終ジャッジ日時 2024-09-19 11:22:04
合計ジャッジ時間 11,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,508 KB
testcase_01 AC 120 ms
41,148 KB
testcase_02 AC 112 ms
40,488 KB
testcase_03 AC 117 ms
40,984 KB
testcase_04 AC 113 ms
41,208 KB
testcase_05 AC 103 ms
40,000 KB
testcase_06 AC 120 ms
41,176 KB
testcase_07 AC 122 ms
41,172 KB
testcase_08 AC 118 ms
41,284 KB
testcase_09 AC 115 ms
41,268 KB
testcase_10 AC 103 ms
40,168 KB
testcase_11 AC 118 ms
41,304 KB
testcase_12 AC 118 ms
41,264 KB
testcase_13 AC 119 ms
41,292 KB
testcase_14 AC 114 ms
40,956 KB
testcase_15 AC 115 ms
40,976 KB
testcase_16 AC 115 ms
41,224 KB
testcase_17 AC 119 ms
41,432 KB
testcase_18 AC 117 ms
41,060 KB
testcase_19 AC 103 ms
40,004 KB
testcase_20 AC 104 ms
40,140 KB
testcase_21 AC 112 ms
41,192 KB
testcase_22 AC 124 ms
41,504 KB
testcase_23 AC 477 ms
47,212 KB
testcase_24 AC 565 ms
48,620 KB
testcase_25 AC 566 ms
48,736 KB
testcase_26 AC 542 ms
48,504 KB
testcase_27 AC 124 ms
41,260 KB
testcase_28 AC 121 ms
41,000 KB
testcase_29 AC 105 ms
40,096 KB
testcase_30 AC 492 ms
48,384 KB
testcase_31 AC 495 ms
48,804 KB
testcase_32 AC 503 ms
48,652 KB
testcase_33 AC 529 ms
48,784 KB
testcase_34 AC 506 ms
48,864 KB
testcase_35 AC 520 ms
48,908 KB
testcase_36 AC 556 ms
48,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static Scanner scan = new Scanner(System.in);
	static int N;
	static int[] A;
	static boolean[] F;
	
	public static void main(String[] args) {
		N = scan.nextInt();
		A = new int[N];
		F = new boolean[N];
		for(int i=0; i<N; i++) {
			A[i] = scan.nextInt();
		}
		
		if(A[0] == A[N-1]) {
			int now = A[0];
			for(int i=1; i<N; i++) {
				if(now != A[i]) {
					if(check(i)) {
						System.out.println(1);
					} else {
						System.out.println(-1);
					}
					System.exit(0);
				}
			}
			System.out.println(0);
		} else {
			if(check(0)) {
				System.out.println(0);
			} else {
				System.out.println(-1);
			}
		}
	}
	
	static boolean check(int first) {
		int count = 0;
		int last = -1;
		for(int i=first; i<N; i++) {
			if(last == A[i]) {
				count++;
			} else {
				count = 0;
			}
			if(count == 0 && F[A[i]-1]) {
				return false;
			}
			F[A[i]-1] = true;
			last = A[i];
		}
		return true;
	}
}
0