結果
問題 | No.24 数当てゲーム |
ユーザー | ほげ太郎 |
提出日時 | 2018-02-26 11:09:03 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,024 bytes |
コンパイル時間 | 2,711 ms |
コンパイル使用メモリ | 75,088 KB |
実行使用メモリ | 54,444 KB |
最終ジャッジ日時 | 2024-05-01 23:56:49 |
合計ジャッジ時間 | 4,410 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
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 | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); char flg = 0x03FF; for (int i = 0; i < n; i++) { int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); int d = sc.nextInt(); if ("YES".equals((sc.next()))) { flg &= 1 << a; flg &= 1 << b; flg &= 1 << c; flg &= 1 << d; for (int j = 0; j < 11; j++) { if (j == a || j == b || j == c || j == d) flg &= 0 << j; } } else { flg &= 0 << a; flg &= 0 << b; flg &= 0 << c; flg &= 0 << d; } } for (int i = 0; i < 11; i++) { if ((flg & 1 << i) != 0) { System.out.println(i); break; } } } }