結果

問題 No.355 数当てゲーム(2)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-07 23:02:00
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,525 bytes
コンパイル時間 3,376 ms
コンパイル使用メモリ 79,968 KB
実行使用メモリ 59,780 KB
平均クエリ数 23.81
最終ジャッジ日時 2024-07-16 10:17:49
合計ジャッジ時間 17,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 172 ms
59,108 KB
testcase_02 AC 169 ms
59,496 KB
testcase_03 AC 160 ms
59,136 KB
testcase_04 AC 179 ms
59,136 KB
testcase_05 AC 181 ms
59,332 KB
testcase_06 AC 176 ms
59,304 KB
testcase_07 AC 160 ms
59,364 KB
testcase_08 AC 180 ms
58,704 KB
testcase_09 RE -
testcase_10 AC 184 ms
59,716 KB
testcase_11 AC 189 ms
59,780 KB
testcase_12 AC 165 ms
58,792 KB
testcase_13 AC 160 ms
58,912 KB
testcase_14 RE -
testcase_15 AC 177 ms
58,952 KB
testcase_16 AC 192 ms
59,236 KB
testcase_17 RE -
testcase_18 AC 186 ms
59,048 KB
testcase_19 AC 184 ms
59,204 KB
testcase_20 AC 187 ms
59,152 KB
testcase_21 AC 175 ms
59,308 KB
testcase_22 RE -
testcase_23 AC 185 ms
58,704 KB
testcase_24 AC 171 ms
58,892 KB
testcase_25 RE -
testcase_26 AC 197 ms
59,700 KB
testcase_27 AC 169 ms
58,840 KB
testcase_28 AC 168 ms
58,784 KB
testcase_29 AC 194 ms
59,292 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 173 ms
58,624 KB
testcase_33 AC 168 ms
58,828 KB
testcase_34 AC 166 ms
58,880 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 187 ms
59,380 KB
testcase_38 AC 197 ms
59,556 KB
testcase_39 AC 172 ms
58,660 KB
testcase_40 AC 174 ms
59,172 KB
testcase_41 AC 166 ms
58,780 KB
testcase_42 AC 175 ms
58,800 KB
testcase_43 AC 173 ms
59,052 KB
testcase_44 AC 167 ms
59,368 KB
testcase_45 AC 184 ms
58,840 KB
testcase_46 AC 197 ms
59,732 KB
testcase_47 AC 192 ms
59,212 KB
testcase_48 AC 185 ms
59,292 KB
testcase_49 AC 172 ms
58,932 KB
testcase_50 AC 170 ms
59,112 KB
testcase_51 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

    Scanner sc = new Scanner(System.in);

    int[] q = {3, 2, 1, 0};

    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;
      }

      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;
              break eachNum;
            }else if(p - 1 == pd){
              if (q[i] > 0){
                q[i]--;
                break eachNum;
              }else{
                q[i] = 9;
                break eachNum;
              }
            }
          }
        }
      }
    }


  }
  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;
  }
}
0