結果

問題 No.334 門松ゲーム
ユーザー YamaKasaYamaKasa
提出日時 2018-09-15 15:47:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 1,243 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 78,752 KB
実行使用メモリ 55,248 KB
最終ジャッジ日時 2024-07-18 05:42:18
合計ジャッジ時間 4,857 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
55,248 KB
testcase_01 AC 114 ms
54,008 KB
testcase_02 AC 138 ms
53,924 KB
testcase_03 AC 145 ms
54,828 KB
testcase_04 AC 146 ms
55,064 KB
testcase_05 AC 148 ms
55,172 KB
testcase_06 AC 147 ms
55,040 KB
testcase_07 AC 104 ms
52,952 KB
testcase_08 AC 146 ms
55,180 KB
testcase_09 AC 117 ms
54,236 KB
testcase_10 AC 129 ms
54,128 KB
testcase_11 AC 134 ms
42,680 KB
testcase_12 AC 147 ms
42,544 KB
testcase_13 AC 139 ms
42,732 KB
testcase_14 AC 116 ms
41,384 KB
testcase_15 AC 142 ms
42,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int[]K = new int[N];
		for(int i = 0; i < N; i++) {
			K[i] = scan.nextInt();
		}
		scan.close();

		if(!game(K)) {
			System.out.println(-1);
		}else {
			 System.out.println(ans[0]+" "+ans[1]+" "+ans[2]);
		}
	}
	static int[] ans = new int[3];
	static boolean game(int[] K) {
		int n = K.length;
//		if(n < 3) {
//			return false;
//		}
		for(int i = 0; i < n - 2; i++) {
			for(int j = i + 1; j < n - 1; j++) {
				for(int k = j + 1; k < n; k++) {
					int a = K[i];
					int b = K[j];
					int c = K[k];
					if(b > Math.max(a, c) || b < Math.min(a, c)) {
						int[] K1 = new int[n - 3];
						int idx = 0;
						// 残りの数列を作成する
						for(int l = 0; l < n; l++) {
							if(l == i || l == j || l == k) {
								continue;
							}
							K1[idx] = K[l];
							idx++;
						}
						if(!game(K1)) {
							ans[0] = i;
							ans[1] = j;
							ans[2] = k;
							return true;
						}
					}
				}
			}
		}
		return false;

	}
	static boolean isCheck(int a, int b, int c) {
		if(b > Math.min(a, c) || b < Math.min(a, c)) {
			return true;
		}
		return false;
	}

}
0