結果

問題 No.355 数当てゲーム(2)
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-04-02 08:55:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 1,531 bytes
コンパイル時間 2,323 ms
コンパイル使用メモリ 78,180 KB
実行使用メモリ 71,384 KB
平均クエリ数 38.87
最終ジャッジ日時 2024-07-16 23:24:59
合計ジャッジ時間 13,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
70,828 KB
testcase_01 AC 176 ms
71,120 KB
testcase_02 AC 158 ms
70,964 KB
testcase_03 AC 169 ms
70,476 KB
testcase_04 AC 163 ms
70,952 KB
testcase_05 AC 160 ms
70,908 KB
testcase_06 AC 176 ms
70,944 KB
testcase_07 AC 172 ms
70,872 KB
testcase_08 AC 166 ms
70,548 KB
testcase_09 AC 169 ms
71,088 KB
testcase_10 AC 166 ms
70,752 KB
testcase_11 AC 168 ms
70,976 KB
testcase_12 AC 175 ms
71,072 KB
testcase_13 AC 180 ms
70,964 KB
testcase_14 AC 166 ms
69,668 KB
testcase_15 AC 166 ms
71,252 KB
testcase_16 AC 164 ms
70,528 KB
testcase_17 AC 171 ms
71,108 KB
testcase_18 AC 165 ms
71,132 KB
testcase_19 AC 176 ms
70,900 KB
testcase_20 AC 180 ms
70,736 KB
testcase_21 AC 175 ms
71,108 KB
testcase_22 AC 171 ms
70,744 KB
testcase_23 AC 151 ms
69,968 KB
testcase_24 AC 173 ms
70,916 KB
testcase_25 AC 170 ms
70,544 KB
testcase_26 AC 167 ms
71,032 KB
testcase_27 AC 168 ms
71,036 KB
testcase_28 AC 169 ms
70,856 KB
testcase_29 AC 165 ms
70,860 KB
testcase_30 AC 165 ms
70,684 KB
testcase_31 AC 168 ms
70,652 KB
testcase_32 AC 169 ms
70,896 KB
testcase_33 AC 173 ms
70,856 KB
testcase_34 AC 166 ms
70,960 KB
testcase_35 AC 133 ms
69,836 KB
testcase_36 AC 166 ms
70,312 KB
testcase_37 AC 177 ms
71,384 KB
testcase_38 AC 175 ms
70,840 KB
testcase_39 AC 170 ms
70,984 KB
testcase_40 AC 178 ms
70,328 KB
testcase_41 AC 177 ms
70,996 KB
testcase_42 AC 151 ms
70,004 KB
testcase_43 AC 165 ms
70,696 KB
testcase_44 AC 167 ms
70,864 KB
testcase_45 AC 150 ms
69,684 KB
testcase_46 AC 172 ms
70,836 KB
testcase_47 AC 150 ms
69,972 KB
testcase_48 AC 179 ms
70,616 KB
testcase_49 AC 170 ms
71,164 KB
testcase_50 AC 176 ms
70,680 KB
testcase_51 AC 136 ms
70,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

class Main {

	static int[] query = new int[4];
	static int hit = 0;
	static int bite = 0;

	static Scanner in = new Scanner(System.in);

	public static void main(String[] args) throws Exception {
		for(int i=0; i<4; i++) {
			query[i] = i;
		}
		query();
		for(int i=0; i<4; i++) {
			int best = -1;
			int best_j = -1;
			for(int j=0; j<=9; j++) {
				query[i] = j;
				if(!isValid()) {
					continue;
				}
				query();
				if(hit + bite > best) {
					best = hit + bite;
					best_j = j;
				}
			}
			query[i] = best_j;
		}
		Arrays.sort(query);
		do {
			query();
		} while(nextP(query));
	}

	public static boolean isValid() {
		boolean[] used = new boolean[10];
		for(int i=0; i<4; i++) {
			int x = query[i];
			if(used[x]) {
				return false;
			}
			used[x] = true;
		}
		return true;
	}

	public static void query() {
		StringBuilder sb = new StringBuilder();
		for(int i=0; i<4; i++) {
			if(i > 0) {
				sb.append(' ');
			}
			sb.append(query[i]);
		}
		System.out.println(sb.toString());
		hit = in.nextInt();
		bite = in.nextInt();
		if(hit == 4) {
			System.exit(0);
		}
	}

	static boolean nextP(int[] p) {
		for(int a=p.length-2; a>=0; --a) {
			if(p[a] < p[a+1]) {
				for(int b=p.length-1;;--b) {
					if(p[b] > p[a]) {
						int temp = p[a];
						p[a] = p[b];
						p[b] = temp;
						for(++a, b=p.length-1; a<b; ++a, --b) {
							temp = p[a];
							p[a] = p[b];
							p[b] = temp;
						}
						return true;
					}
				}
			}
		}
		return false;
	}

}
0