結果

問題 No.355 数当てゲーム(2)
ユーザー GrenacheGrenache
提出日時 2016-04-02 20:08:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 3,062 bytes
コンパイル時間 4,031 ms
コンパイル使用メモリ 79,976 KB
実行使用メモリ 70,788 KB
平均クエリ数 5.52
最終ジャッジ日時 2024-07-16 23:28:02
合計ジャッジ時間 14,174 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
70,392 KB
testcase_01 AC 149 ms
69,808 KB
testcase_02 AC 156 ms
70,700 KB
testcase_03 AC 156 ms
69,824 KB
testcase_04 AC 146 ms
69,876 KB
testcase_05 AC 155 ms
69,996 KB
testcase_06 AC 167 ms
70,224 KB
testcase_07 AC 164 ms
70,460 KB
testcase_08 AC 149 ms
70,012 KB
testcase_09 AC 148 ms
69,788 KB
testcase_10 AC 144 ms
69,968 KB
testcase_11 AC 146 ms
69,772 KB
testcase_12 AC 155 ms
69,588 KB
testcase_13 AC 148 ms
69,544 KB
testcase_14 AC 143 ms
69,632 KB
testcase_15 AC 145 ms
70,076 KB
testcase_16 AC 160 ms
70,068 KB
testcase_17 AC 141 ms
70,304 KB
testcase_18 AC 145 ms
70,032 KB
testcase_19 AC 146 ms
69,832 KB
testcase_20 AC 150 ms
69,812 KB
testcase_21 AC 148 ms
69,668 KB
testcase_22 AC 161 ms
69,996 KB
testcase_23 AC 151 ms
69,932 KB
testcase_24 AC 148 ms
70,276 KB
testcase_25 AC 143 ms
69,696 KB
testcase_26 AC 161 ms
69,972 KB
testcase_27 AC 155 ms
69,948 KB
testcase_28 AC 157 ms
69,552 KB
testcase_29 AC 158 ms
69,596 KB
testcase_30 AC 157 ms
69,812 KB
testcase_31 AC 162 ms
70,320 KB
testcase_32 AC 147 ms
69,676 KB
testcase_33 AC 162 ms
70,788 KB
testcase_34 AC 152 ms
70,048 KB
testcase_35 AC 133 ms
70,056 KB
testcase_36 AC 162 ms
70,772 KB
testcase_37 AC 160 ms
69,880 KB
testcase_38 AC 152 ms
69,720 KB
testcase_39 AC 161 ms
69,880 KB
testcase_40 AC 163 ms
70,248 KB
testcase_41 AC 140 ms
69,928 KB
testcase_42 AC 145 ms
69,728 KB
testcase_43 AC 142 ms
69,916 KB
testcase_44 AC 145 ms
69,528 KB
testcase_45 AC 145 ms
69,792 KB
testcase_46 AC 158 ms
70,084 KB
testcase_47 AC 157 ms
69,828 KB
testcase_48 AC 149 ms
69,500 KB
testcase_49 AC 158 ms
70,028 KB
testcase_50 AC 168 ms
70,188 KB
testcase_51 AC 141 ms
70,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder355 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Printer pr = new Printer(System.out);

        Queue<List<Integer>> q = new ArrayDeque<>();
        for (int i = 0; i < 10; i++) {
            for (int j = 0; j < 10; j++) {
            	if (i == j) {
            		continue;
            	}
                for (int k = 0; k < 10; k++) {
                	if (k == i || k == j) {
                		continue;
                	}
                    for (int l = 0; l < 10; l++) {
                    	if (l == i || l == j || l == k) {
                    		continue;
                    	}

                    	ArrayList<Integer> tmp = new ArrayList<>();
                    	tmp.add(i);
                    	tmp.add(j);
                    	tmp.add(k);
                    	tmp.add(l);
                    	q.add(tmp);
                    }
                }
            }
        }

        while (!q.isEmpty()) {
//        	pr.println(q.size());
        	List<Integer> e = q.remove();

        	send(e, pr);
        	int x = sc.nextInt();
        	int y = sc.nextInt();
    		if (x == 4 && y == 0) {
    			break;
    		}

    		Queue<List<Integer>> qtmp = new ArrayDeque<>();
    		for (List<Integer> ee : q) {
    			if (eq(e, ee, x, y)) {
    				qtmp.add(ee);
    			}
    		}

    		q = qtmp;
        }

        pr.close();
        sc.close();
    }

	private static boolean eq(List<Integer> e, List<Integer> ee, int x, int y) {
		int xtmp = 0;
		int ytmp = 0;
		for (int i = 0; i < e.size(); i++) {
			for (int j = 0; j < e.size(); j++) {
				if (e.get(i) == ee.get(j)) {
					if (i == j) {
						xtmp++;
					} else {
						ytmp++;
					}
				}
			}
		}

		if (x == xtmp && y == ytmp) {
			return true;
		} else {
			return false;
		}
	}

	private static void send(List<Integer> num, Printer pr) {
		pr.printf("%d %d %d %d\n", num.get(0), num.get(1), num.get(2), num.get(3));
		pr.flush();

		return;
	}

	@SuppressWarnings("unused")
	private static class Scanner {
		BufferedReader br;
		Iterator<String> it;

		Scanner (InputStream in) {
			br = new BufferedReader(new InputStreamReader(in));
		}

		String next() throws RuntimeException  {
			try {
				if (it == null || !it.hasNext()) {
					it = Arrays.asList(br.readLine().split(" ")).iterator();
				}
				return it.next();
			} catch (IOException e) {
				throw new IllegalStateException();
			}
		}

		int nextInt() throws RuntimeException {
			return Integer.parseInt(next());
		}

		long nextLong() throws RuntimeException {
			return Long.parseLong(next());
		}

		float nextFloat() throws RuntimeException {
			return Float.parseFloat(next());
		}

		double nextDouble() throws RuntimeException {
			return Double.parseDouble(next());
		}

		void close() {
			try {
				br.close();
			} catch (IOException e) {
//				throw new IllegalStateException();
			}
		}
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0