結果

問題 No.355 数当てゲーム(2)
ユーザー uwiuwi
提出日時 2016-04-01 22:28:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 1,630 bytes
コンパイル時間 5,249 ms
コンパイル使用メモリ 87,904 KB
実行使用メモリ 72,440 KB
平均クエリ数 25.67
最終ジャッジ日時 2024-07-16 08:51:35
合計ジャッジ時間 17,758 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
71,460 KB
testcase_01 AC 203 ms
71,324 KB
testcase_02 AC 208 ms
71,816 KB
testcase_03 AC 188 ms
71,456 KB
testcase_04 AC 204 ms
71,536 KB
testcase_05 AC 201 ms
71,200 KB
testcase_06 AC 207 ms
71,480 KB
testcase_07 AC 212 ms
71,968 KB
testcase_08 AC 205 ms
71,320 KB
testcase_09 AC 208 ms
71,724 KB
testcase_10 AC 192 ms
71,872 KB
testcase_11 AC 203 ms
71,332 KB
testcase_12 AC 195 ms
71,424 KB
testcase_13 AC 206 ms
71,828 KB
testcase_14 AC 210 ms
71,860 KB
testcase_15 AC 208 ms
71,556 KB
testcase_16 AC 205 ms
72,032 KB
testcase_17 AC 201 ms
71,412 KB
testcase_18 AC 202 ms
71,340 KB
testcase_19 AC 206 ms
71,340 KB
testcase_20 AC 186 ms
71,248 KB
testcase_21 AC 218 ms
72,060 KB
testcase_22 AC 186 ms
71,544 KB
testcase_23 AC 211 ms
71,532 KB
testcase_24 AC 202 ms
71,692 KB
testcase_25 AC 183 ms
71,344 KB
testcase_26 AC 201 ms
71,520 KB
testcase_27 AC 205 ms
71,436 KB
testcase_28 AC 202 ms
71,756 KB
testcase_29 AC 201 ms
71,716 KB
testcase_30 AC 206 ms
71,772 KB
testcase_31 AC 196 ms
71,416 KB
testcase_32 AC 203 ms
71,708 KB
testcase_33 AC 223 ms
72,000 KB
testcase_34 AC 208 ms
71,452 KB
testcase_35 AC 197 ms
72,004 KB
testcase_36 AC 197 ms
71,660 KB
testcase_37 AC 188 ms
71,312 KB
testcase_38 AC 191 ms
71,228 KB
testcase_39 AC 194 ms
72,440 KB
testcase_40 AC 191 ms
71,492 KB
testcase_41 AC 205 ms
72,016 KB
testcase_42 AC 204 ms
71,684 KB
testcase_43 AC 203 ms
71,716 KB
testcase_44 AC 188 ms
71,072 KB
testcase_45 AC 203 ms
71,268 KB
testcase_46 AC 199 ms
71,608 KB
testcase_47 AC 202 ms
71,704 KB
testcase_48 AC 221 ms
71,484 KB
testcase_49 AC 199 ms
71,852 KB
testcase_50 AC 219 ms
71,852 KB
testcase_51 AC 196 ms
71,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Random;
import java.util.Scanner;

public class Q701 {
	static Scanner in;
	static PrintWriter out;
	static String INPUT = "";
	
	static void solve()
	{
		Random gen = new Random();
		int[] none = null;
		int nno = 0;
		outer:
		while(true){
			int[] a = new int[4];
			for(int i = 0;i < 4;i++)a[i] = gen.nextInt(10);
			for(int i = 0;i < 4;i++){
				for(int j= i+1;j < 4;j++){
					if(a[i] == a[j])continue outer;
				}
			}
			out.println(a[0] + " " + a[1] + " " + a[2] + " " + a[3]);
			out.flush();
			int x = ni(), y = ni();
			if(x + y == 0){
				none = a;
				for(int i = 0;i < 4;i++){
					nno |= 1<<a[i];
				}
				break;
			}
		}
		
		int[] ret = new int[4];
		for(int i = 0;i < 4;i++){
			for(int j = 0;j < 10;j++){
				if(nno<<~j<0)continue;
				int[] b = Arrays.copyOf(none, 4);
				b[i] = j;
				out.println(b[0] + " " + b[1] + " " + b[2] + " " + b[3]);
				out.flush();
				int x = ni(), y = ni();
				if(x == 1){
					ret[i] = j;
					nno |= 1<<j;
					break;
				}
			}
		}
		
		out.println(ret[0] + " " + ret[1] + " " + ret[2] + " " + ret[3]);
		out.flush();
	}
	
	public static void main(String[] args) throws Exception
	{
		in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT);
		out = new PrintWriter(System.out);
		
		solve();
		out.flush();
	}
	
	static int ni() { return Integer.parseInt(in.next()); }
	static long nl() { return Long.parseLong(in.next()); }
	static double nd() { return Double.parseDouble(in.next()); }
	static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); }
}
0