結果
問題 | No.355 数当てゲーム(2) |
ユーザー | kenji_shioya |
提出日時 | 2016-06-08 00:21:54 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,267 bytes |
コンパイル時間 | 4,266 ms |
コンパイル使用メモリ | 80,688 KB |
実行使用メモリ | 74,284 KB |
平均クエリ数 | 18.25 |
最終ジャッジ日時 | 2024-07-16 10:18:35 |
合計ジャッジ時間 | 17,910 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 179 ms
71,632 KB |
testcase_02 | AC | 181 ms
72,036 KB |
testcase_03 | AC | 165 ms
71,224 KB |
testcase_04 | AC | 165 ms
71,156 KB |
testcase_05 | RE | - |
testcase_06 | AC | 168 ms
71,768 KB |
testcase_07 | AC | 172 ms
71,292 KB |
testcase_08 | AC | 184 ms
71,708 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 168 ms
71,484 KB |
testcase_13 | AC | 166 ms
71,076 KB |
testcase_14 | RE | - |
testcase_15 | AC | 194 ms
71,692 KB |
testcase_16 | AC | 181 ms
71,340 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 164 ms
71,484 KB |
testcase_20 | AC | 192 ms
71,508 KB |
testcase_21 | AC | 168 ms
71,292 KB |
testcase_22 | RE | - |
testcase_23 | AC | 170 ms
71,636 KB |
testcase_24 | AC | 166 ms
71,184 KB |
testcase_25 | AC | 198 ms
71,572 KB |
testcase_26 | AC | 192 ms
72,000 KB |
testcase_27 | AC | 172 ms
72,036 KB |
testcase_28 | AC | 179 ms
71,760 KB |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | AC | 171 ms
71,376 KB |
testcase_33 | AC | 165 ms
71,432 KB |
testcase_34 | AC | 164 ms
71,552 KB |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | AC | 167 ms
71,780 KB |
testcase_38 | AC | 182 ms
71,896 KB |
testcase_39 | AC | 168 ms
71,460 KB |
testcase_40 | AC | 170 ms
71,876 KB |
testcase_41 | AC | 171 ms
71,624 KB |
testcase_42 | AC | 175 ms
71,340 KB |
testcase_43 | AC | 190 ms
71,228 KB |
testcase_44 | AC | 176 ms
71,552 KB |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | AC | 175 ms
71,936 KB |
testcase_48 | AC | 180 ms
71,728 KB |
testcase_49 | AC | 180 ms
71,924 KB |
testcase_50 | AC | 166 ms
71,396 KB |
testcase_51 | RE | - |
ソースコード
import java.util.*; public class Exercise67{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); int[] q = {3, 2, 1, 0}; 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; } } }