結果

問題 No.355 数当てゲーム(2)
ユーザー 37zigen37zigen
提出日時 2016-04-02 13:40:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 1,209 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 79,300 KB
実行使用メモリ 73,540 KB
平均クエリ数 27.13
最終ジャッジ日時 2024-07-16 23:25:24
合計ジャッジ時間 14,451 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
71,504 KB
testcase_01 AC 187 ms
71,376 KB
testcase_02 AC 194 ms
71,980 KB
testcase_03 AC 175 ms
71,004 KB
testcase_04 AC 176 ms
71,508 KB
testcase_05 AC 170 ms
73,540 KB
testcase_06 AC 196 ms
71,708 KB
testcase_07 AC 172 ms
71,728 KB
testcase_08 AC 176 ms
71,908 KB
testcase_09 AC 203 ms
71,360 KB
testcase_10 AC 192 ms
71,128 KB
testcase_11 AC 187 ms
72,120 KB
testcase_12 AC 193 ms
71,656 KB
testcase_13 AC 194 ms
71,724 KB
testcase_14 AC 168 ms
71,244 KB
testcase_15 AC 194 ms
71,368 KB
testcase_16 AC 196 ms
71,656 KB
testcase_17 AC 182 ms
71,344 KB
testcase_18 AC 169 ms
70,988 KB
testcase_19 AC 175 ms
71,552 KB
testcase_20 AC 188 ms
71,592 KB
testcase_21 AC 193 ms
71,996 KB
testcase_22 AC 171 ms
71,480 KB
testcase_23 AC 198 ms
71,208 KB
testcase_24 AC 191 ms
71,744 KB
testcase_25 AC 187 ms
71,620 KB
testcase_26 AC 175 ms
71,412 KB
testcase_27 AC 185 ms
71,628 KB
testcase_28 AC 171 ms
71,768 KB
testcase_29 AC 177 ms
71,900 KB
testcase_30 AC 181 ms
71,864 KB
testcase_31 AC 184 ms
71,632 KB
testcase_32 AC 197 ms
71,616 KB
testcase_33 AC 189 ms
71,608 KB
testcase_34 AC 187 ms
71,636 KB
testcase_35 AC 179 ms
71,464 KB
testcase_36 AC 176 ms
71,512 KB
testcase_37 AC 182 ms
71,628 KB
testcase_38 AC 183 ms
71,764 KB
testcase_39 AC 190 ms
71,200 KB
testcase_40 AC 192 ms
71,644 KB
testcase_41 AC 184 ms
71,084 KB
testcase_42 AC 196 ms
70,964 KB
testcase_43 AC 192 ms
71,444 KB
testcase_44 AC 201 ms
71,552 KB
testcase_45 AC 178 ms
71,404 KB
testcase_46 AC 185 ms
71,692 KB
testcase_47 AC 172 ms
71,368 KB
testcase_48 AC 192 ms
71,492 KB
testcase_49 AC 206 ms
71,516 KB
testcase_50 AC 188 ms
71,632 KB
testcase_51 AC 165 ms
71,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder355;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int[] d={0,1,2,3};
		for(int i=0;i<4;i++){;
		boolean flag=false;
		int memo=0;
		int flagValue=-1;
			for(int j=0;j<10;j++){
				d[i]=j;
				boolean f=true;
				//重複する数字がある組み合わせを除去
				for(int k=0;k<4;k++){
					if(d[i]==d[k]&&i!=k)f=false;
				}
				if(!f)continue;
				System.out.println(d[0]+" "+d[1]+" "+d[2]+" "+d[3]);
				int aa=sc.nextInt();
				int bb=sc.nextInt();
				if(aa==4&bb==0){
					return;
				}else if(!flag){
					memo=aa+bb;
					flagValue=j;
					flag=true;
				}else if(flag){
					if(memo<aa+bb){
						break;
					}else if(memo==aa+bb){
						continue;
					}else if(memo>aa+bb){
						d[i]=flagValue;
						break;
					}
				}
			}
			
			
		}

		for(int i=0;i<4;i++){
			for(int j=0;j<4;j++){
				if(i==j)continue;
				for(int k=0;k<4;k++){
					if(i==k||j==k)continue;
					for(int l=0;l<4;l++){
						if(i==l||j==l||k==l)continue;
						System.out.println(d[i]+" "+d[j]+" "+d[k]+" "+d[l]);
						int a=sc.nextInt();
						int b=sc.nextInt();
						if(a==4&&b==0)return;
					}
				}
			}
		}
	}
}
0