結果

問題 No.355 数当てゲーム(2)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-08 08:21:34
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,267 bytes
コンパイル時間 3,578 ms
コンパイル使用メモリ 80,204 KB
実行使用メモリ 59,768 KB
平均クエリ数 16.92
最終ジャッジ日時 2024-07-16 10:20:39
合計ジャッジ時間 16,788 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
58,772 KB
testcase_01 RE -
testcase_02 AC 166 ms
58,696 KB
testcase_03 AC 173 ms
59,068 KB
testcase_04 AC 172 ms
58,740 KB
testcase_05 AC 163 ms
58,948 KB
testcase_06 AC 173 ms
58,704 KB
testcase_07 AC 174 ms
59,292 KB
testcase_08 RE -
testcase_09 AC 164 ms
58,672 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 177 ms
59,020 KB
testcase_13 AC 170 ms
58,520 KB
testcase_14 AC 171 ms
58,804 KB
testcase_15 AC 171 ms
59,216 KB
testcase_16 AC 159 ms
58,936 KB
testcase_17 AC 169 ms
58,796 KB
testcase_18 AC 174 ms
59,172 KB
testcase_19 AC 168 ms
58,844 KB
testcase_20 AC 175 ms
59,008 KB
testcase_21 AC 163 ms
58,924 KB
testcase_22 AC 164 ms
58,976 KB
testcase_23 AC 170 ms
59,412 KB
testcase_24 AC 163 ms
58,868 KB
testcase_25 AC 171 ms
59,272 KB
testcase_26 AC 170 ms
59,052 KB
testcase_27 AC 170 ms
59,048 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 179 ms
59,240 KB
testcase_31 AC 172 ms
59,332 KB
testcase_32 AC 185 ms
59,768 KB
testcase_33 AC 165 ms
59,284 KB
testcase_34 AC 184 ms
59,252 KB
testcase_35 AC 166 ms
58,636 KB
testcase_36 AC 163 ms
58,892 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 179 ms
58,848 KB
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 169 ms
58,652 KB
testcase_43 RE -
testcase_44 AC 160 ms
59,608 KB
testcase_45 AC 165 ms
59,636 KB
testcase_46 AC 169 ms
58,632 KB
testcase_47 AC 163 ms
58,960 KB
testcase_48 AC 180 ms
59,184 KB
testcase_49 AC 164 ms
58,996 KB
testcase_50 AC 168 ms
59,188 KB
testcase_51 AC 165 ms
58,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

    Scanner sc = new Scanner(System.in);

    int[] q = {0, 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++){
        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){
    if (num < 9){
      num++;
    }else{
      num = 0;
    }
    return num;
  }

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