結果

問題 No.355 数当てゲーム(2)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-08 08:54:03
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,424 bytes
コンパイル時間 3,608 ms
コンパイル使用メモリ 76,768 KB
実行使用メモリ 75,284 KB
平均クエリ数 16.58
最終ジャッジ日時 2023-09-23 10:51:08
合計ジャッジ時間 17,068 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 200 ms
72,912 KB
testcase_01 AC 194 ms
72,952 KB
testcase_02 AC 185 ms
73,324 KB
testcase_03 AC 189 ms
72,744 KB
testcase_04 AC 189 ms
72,404 KB
testcase_05 AC 182 ms
72,980 KB
testcase_06 AC 196 ms
73,204 KB
testcase_07 AC 191 ms
73,508 KB
testcase_08 AC 195 ms
71,208 KB
testcase_09 AC 186 ms
73,076 KB
testcase_10 RE -
testcase_11 AC 189 ms
72,592 KB
testcase_12 AC 186 ms
73,152 KB
testcase_13 AC 182 ms
72,780 KB
testcase_14 AC 186 ms
73,112 KB
testcase_15 AC 195 ms
73,080 KB
testcase_16 AC 185 ms
73,372 KB
testcase_17 AC 187 ms
71,604 KB
testcase_18 AC 183 ms
73,044 KB
testcase_19 AC 195 ms
73,180 KB
testcase_20 AC 202 ms
73,148 KB
testcase_21 AC 185 ms
75,284 KB
testcase_22 AC 184 ms
72,676 KB
testcase_23 AC 180 ms
72,576 KB
testcase_24 AC 183 ms
72,808 KB
testcase_25 AC 186 ms
73,092 KB
testcase_26 AC 189 ms
73,444 KB
testcase_27 AC 196 ms
72,720 KB
testcase_28 AC 198 ms
70,844 KB
testcase_29 AC 201 ms
73,012 KB
testcase_30 AC 185 ms
72,296 KB
testcase_31 AC 196 ms
73,152 KB
testcase_32 AC 195 ms
72,780 KB
testcase_33 AC 188 ms
72,944 KB
testcase_34 AC 194 ms
73,064 KB
testcase_35 AC 184 ms
73,264 KB
testcase_36 AC 185 ms
71,252 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 189 ms
72,928 KB
testcase_43 AC 192 ms
73,480 KB
testcase_44 AC 186 ms
73,228 KB
testcase_45 AC 185 ms
72,900 KB
testcase_46 AC 191 ms
73,540 KB
testcase_47 AC 185 ms
72,732 KB
testcase_48 AC 201 ms
73,012 KB
testcase_49 AC 189 ms
73,980 KB
testcase_50 AC 205 ms
73,896 KB
testcase_51 AC 186 ms
72,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise67{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int[] q = {1, 4, 9, 6};
    ArrayList<Integer> confirm = new ArrayList<Integer>();
    confirm.add(0);
    confirm.add(1);
    confirm.add(2);
    confirm.add(3);

    whole: while(true){
      System.out.println(q[0] + " " + q[1] + " " + q[2] + " " + q[3]);
      System.out.flush();

      int p = sc.nextInt();

      int h = sc.nextInt();

      if (p == 4){
        break whole;
      }else if (p + h == 4){
        q[confirm.get(confirm.size() - 1)] = changeNum(q[confirm.get(confirm.size() - 1)], q);
      }

      for (int i = 0; i < 4; i++){
        if (confirm.indexOf(i) == -1){
          continue;
        }
        eachNum: for (int j = 0; j < 10; j++){
          if (checkMN(plus(q[i]), q)){
              q[i] = plus(q[i]);
              continue;
          }else{
            q[i] = plus(q[i]);
            System.out.println(q[0] + " " + q[1] + " " + q[2] + " " + q[3]);
            System.out.flush();

            int pd = sc.nextInt();
            int hd = sc.nextInt();

            if (pd == 4){
              break whole;
            }else if(p + 1 == pd){
              p = pd;
              confirm.remove(confirm.indexOf(i));
              break eachNum;
            }else if(p - 1 == pd){
              if (q[i] > 0){
                q[i]--;
                confirm.remove(confirm.indexOf(i));
                break eachNum;
              }else{
                q[i] = 9;
                confirm.remove(confirm.indexOf(i));
                break eachNum;
              }
            }else if (pd + hd == 4){
              q[confirm.get(confirm.size() - 1)] = changeNum(q[confirm.get(confirm.size() - 1)], q);
            }
          }
        }
      }
    }


  }
  private static boolean checkMN(int num, int[] array){
    boolean flag = false;
    for (int i = 0; i < 4; i++){
      if (num == array[i]){
        flag = true;
      }
    }
    return flag;
  }

  private static int plus(int num){
    int newNum = 0;
    if (num < 9){
      newNum = num + 1;
    }else{
      newNum = 0;
    }
    return newNum;
  }

  private static int changeNum(int num, int[] array){
    if (checkMN(num, array)){
      if (num > 0){
        num -= 2;
      }else{
        num = 9;
      }
        return changeNum(num, array);
    }else{
      return num;
    }
  }
}
0