結果
問題 | No.24 数当てゲーム |
ユーザー | kenji_shioya |
提出日時 | 2017-01-08 23:42:58 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,107 bytes |
コンパイル時間 | 4,120 ms |
コンパイル使用メモリ | 77,848 KB |
実行使用メモリ | 41,840 KB |
最終ジャッジ日時 | 2024-05-10 02:53:53 |
合計ジャッジ時間 | 5,518 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
41,456 KB |
testcase_01 | AC | 136 ms
41,380 KB |
testcase_02 | AC | 134 ms
41,316 KB |
testcase_03 | AC | 137 ms
41,300 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 134 ms
41,508 KB |
testcase_07 | WA | - |
testcase_08 | AC | 137 ms
41,224 KB |
testcase_09 | WA | - |
ソースコード
import java.util.*; public class NumGuess{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] nums = new String[10]; for (int i = 0; i < 10; i++) { nums[i] = "none"; } int s = sc.nextInt(); for (int i = 0; i < s; i++) { int[] ansNums = new int[4]; for (int j = 0; j < 4; j++) { ansNums[j] = sc.nextInt(); } String ans = sc.next(); Arrays.sort(ansNums); if (ans.equals("NO")) { for (int index : ansNums) { nums[index] = "false"; } } else { for (int j = 0; j < 10; j++) { if (Arrays.binarySearch(ansNums, j) < 0) { nums[j] = "false"; } else { if (!nums[j].equals("false")) { nums[j] = "true"; } } } } } int ans = 0; int trueIndex = Arrays.binarySearch(nums, "true"); int noneIndex = Arrays.binarySearch(nums, "none");; if (trueIndex < 0) { ans = noneIndex; } else { ans = trueIndex; } System.out.println(ans); } }