結果
問題 | No.24 数当てゲーム |
ユーザー | SagToki |
提出日時 | 2018-05-09 14:06:31 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 136 ms / 5,000 ms |
コード長 | 1,697 bytes |
コンパイル時間 | 5,840 ms |
コンパイル使用メモリ | 78,712 KB |
実行使用メモリ | 54,360 KB |
最終ジャッジ日時 | 2024-06-28 02:41:12 |
合計ジャッジ時間 | 5,403 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
54,088 KB |
testcase_01 | AC | 130 ms
54,108 KB |
testcase_02 | AC | 134 ms
54,156 KB |
testcase_03 | AC | 131 ms
54,360 KB |
testcase_04 | AC | 131 ms
53,780 KB |
testcase_05 | AC | 130 ms
53,984 KB |
testcase_06 | AC | 133 ms
54,124 KB |
testcase_07 | AC | 136 ms
53,960 KB |
testcase_08 | AC | 132 ms
54,324 KB |
testcase_09 | AC | 136 ms
54,212 KB |
ソースコード
import java.util.*; public class NumbersGame { public static void main(String[] args){ Scanner scanner = new Scanner(System.in); try{ int Turn = scanner.nextInt(); Integer[] TaroCards = new Integer[4]; int[] num = new int[10]; int ZiroCard ; for(int i = 0 ; i < Turn ; i++){ for(int k = 0 ; k < 4 ; k++){ TaroCards[k] = scanner.nextInt(); } String Ansewer = scanner.next(); if(!(Ansewer.equals("YES") || Ansewer.equals("NO"))){ System.out.println("結果はYESかNOで入力してください"); System.exit(0); } for(int j = 0 ; j < num.length ; j++){ if(Ansewer.equals("YES")){ if(!Arrays.asList(TaroCards).contains(j)){ num[j] = 1; } }else{ if(Arrays.asList(TaroCards).contains(j)){ num[j] = 1; } } } } for(int k = 0 ; k < num.length ; k++){ if(num[k] == 0){ System.out.println(k); } } }catch(InputMismatchException e){ System.out.println("正しく入力してください。"); }catch(Exception E){ System.out.println("予期せぬエラーです。"); } } }