結果

問題 No.334 門松ゲーム
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-26 01:44:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 960 bytes
コンパイル時間 3,059 ms
コンパイル使用メモリ 80,516 KB
実行使用メモリ 43,796 KB
最終ジャッジ日時 2024-06-28 18:07:37
合計ジャッジ時間 6,256 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
42,828 KB
testcase_01 AC 115 ms
41,292 KB
testcase_02 AC 128 ms
41,564 KB
testcase_03 AC 127 ms
42,436 KB
testcase_04 AC 143 ms
42,756 KB
testcase_05 AC 143 ms
42,792 KB
testcase_06 AC 155 ms
43,796 KB
testcase_07 AC 133 ms
41,672 KB
testcase_08 AC 148 ms
42,460 KB
testcase_09 AC 122 ms
41,688 KB
testcase_10 AC 147 ms
41,992 KB
testcase_11 AC 154 ms
42,320 KB
testcase_12 AC 147 ms
43,028 KB
testcase_13 AC 178 ms
42,668 KB
testcase_14 AC 124 ms
41,284 KB
testcase_15 AC 156 ms
42,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No334{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		
		StringBuilder sb = new StringBuilder();
		int[] K = new int[N];
		for(int i = 0; i < N; i++){
			K[i] = sc.nextInt();
		}
		if(game(K)) System.out.println(ans[0]+" "+ans[1]+" "+ans[2]);
		else System.out.println(-1);
	}
	
	static int[] ans = new int[3];
	private static boolean game(int[] K){
		int n = K.length;
		for(int i = 0; i < n; i++){
			for(int j = i+1; j < n; j++){
				for(int k = j+1; k < n; k++){
					int a = K[i];
					int b = K[j];
					int c = K[k];
					if(a == -1 || b == -1 || c == -1) continue;
					if(b > Math.max(a, c) || b < Math.min(a, c)){
						int[] d = Arrays.copyOf(K, K.length);
						d[i] = d[j] = d[k] = -1;
						if(!game(d)){
							ans[0] = i;
							ans[1] = j;
							ans[2] = k;
							return true; // D wins
						}
					}
				}
			}
		}
		return false; // D lose
	}
}
0