結果
問題 | No.24 数当てゲーム |
ユーザー | YukimotoPG |
提出日時 | 2019-02-14 14:46:59 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 137 ms / 5,000 ms |
コード長 | 825 bytes |
コンパイル時間 | 2,155 ms |
コンパイル使用メモリ | 77,344 KB |
実行使用メモリ | 54,240 KB |
最終ジャッジ日時 | 2024-09-13 11:25:01 |
合計ジャッジ時間 | 4,200 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
53,892 KB |
testcase_01 | AC | 133 ms
53,808 KB |
testcase_02 | AC | 133 ms
53,996 KB |
testcase_03 | AC | 135 ms
53,972 KB |
testcase_04 | AC | 135 ms
53,824 KB |
testcase_05 | AC | 134 ms
53,756 KB |
testcase_06 | AC | 136 ms
53,824 KB |
testcase_07 | AC | 137 ms
54,240 KB |
testcase_08 | AC | 135 ms
54,104 KB |
testcase_09 | AC | 133 ms
54,184 KB |
ソースコード
import java.util.*; class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { boolean[] num = new boolean[10]; Arrays.fill(num, true); int n = sc.nextInt(); for (int i=0; i<n; i++) { int[] temp = {sc.nextInt(), sc.nextInt(), sc.nextInt(), sc.nextInt()}; if (sc.next().equals("NO")) { for (int j=0; j<4; j++) { num[temp[j]] = false; } } else { for (int j=0; j<10; j++) { boolean F = true; for (int k=0; k<4; k++) { if (j == temp[k]) { F = false; break; } } if (F == true) num[j] = false; } } // for (int j=0; j<10; j++) { // System.out.print(j+":"+num[j]); // } // System.out.println(); } for (int i=0; i<10; i++) { if (num[i] == true) System.out.println(i); } } }