結果
問題 | No.355 数当てゲーム(2) |
ユーザー | ぴろず |
提出日時 | 2016-04-01 23:56:02 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,281 bytes |
コンパイル時間 | 2,124 ms |
コンパイル使用メモリ | 77,384 KB |
実行使用メモリ | 67,044 KB |
平均クエリ数 | 14.81 |
最終ジャッジ日時 | 2024-07-16 09:28:14 |
合計ジャッジ時間 | 18,141 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 151 ms
64,300 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 154 ms
65,120 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 143 ms
63,760 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | RE | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 143 ms
63,316 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 145 ms
63,488 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 160 ms
64,368 KB |
testcase_37 | RE | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 220 ms
57,600 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 143 ms
65,836 KB |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | RE | - |
ソースコード
package no355; import java.util.Scanner; public class Main { static int[] query = new int[4]; static int hit = 0; static int blow = 0; static Scanner sc = new Scanner(System.in); public static void main(String[] args) { while(true) { for(int i=0;i<4;i++) { query[i] = (int) (Math.random() * 10); } if (!isValid()) continue; query(); if (hit == 0) break; } for(int i=0;i<4;i++) { query(); if (blow == 0) { for(int j=0;j<=9;j++) { query[i] = j; if (!isValid()) continue; query(); if (hit == i + 1) { break; } } }else{ for(int j=i+1;j<4;j++) { int t1 = query[i]; int t2 = query[j]; query[i] = t2; query[j] = t1; query(); if (hit == i + 1) { break; } query[i] = t1; query[j] = t2; } } } } public static boolean isValid() { boolean[] used = new boolean[10]; for(int i=0;i<4;i++) { int x = query[i]; if (used[x]) { return false; } used[x] = true; } return true; } public static void query() { StringBuilder sb = new StringBuilder(); for(int i=0;i<4;i++) { if (i > 0) sb.append(' '); sb.append(query[i]); } System.out.println(sb.toString()); hit = sc.nextInt(); blow = sc.nextInt(); } }