結果
問題 | No.24 数当てゲーム |
ユーザー | abc |
提出日時 | 2016-10-20 05:03:39 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,183 bytes |
コンパイル時間 | 2,445 ms |
コンパイル使用メモリ | 77,444 KB |
実行使用メモリ | 41,492 KB |
最終ジャッジ日時 | 2024-11-23 14:31:10 |
合計ジャッジ時間 | 4,030 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 118 ms
39,800 KB |
testcase_05 | AC | 132 ms
41,048 KB |
testcase_06 | WA | - |
testcase_07 | AC | 133 ms
41,304 KB |
testcase_08 | WA | - |
testcase_09 | AC | 129 ms
41,028 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int NUM_TURN = sc.nextInt(); boolean[] answer = new boolean[10]; Arrays.fill(answer, true); for (int i = 0; i < NUM_TURN; i++) { int num1 = sc.nextInt(); int num2 = sc.nextInt(); int num3 = sc.nextInt(); int num4 = sc.nextInt(); String included = sc.next(); if ("YES".equals(included)) { for (int j = 0; j < NUM_TURN; j++) { if (!(j == num1 || j == num2 || j == num3 || j == num4)) { answer[j] = false; } } } else if ("NO".equals(included)) { answer[num1] = false; answer[num2] = false; answer[num3] = false; answer[num4] = false; } } for (int i = 0; i < NUM_TURN; i++) { if (answer[i]) { System.out.println(i); break; } } } }