結果
問題 | No.24 数当てゲーム |
ユーザー | ほげ太郎 |
提出日時 | 2018-02-26 10:52:50 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 735 bytes |
コンパイル時間 | 1,871 ms |
コンパイル使用メモリ | 74,928 KB |
実行使用メモリ | 55,804 KB |
最終ジャッジ日時 | 2024-05-01 23:25:17 |
合計ジャッジ時間 | 3,833 ms |
ジャッジサーバーID (参考情報) |
judge4 / 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 ("NO".equals((sc.next()))) { 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; } } } }