結果

問題 No.24 数当てゲーム
ユーザー nCk_cvnCk_cv
提出日時 2016-02-01 21:08:33
言語 Java
(openjdk 23)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 607 bytes
コンパイル時間 2,194 ms
コンパイル使用メモリ 80,508 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-09-21 19:53:32
合計ジャッジ時間 4,246 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,696 KB
testcase_01 AC 135 ms
41,020 KB
testcase_02 AC 137 ms
41,168 KB
testcase_03 AC 140 ms
41,472 KB
testcase_04 AC 137 ms
41,432 KB
testcase_05 AC 139 ms
41,392 KB
testcase_06 AC 136 ms
41,472 KB
testcase_07 AC 138 ms
41,424 KB
testcase_08 AC 136 ms
41,588 KB
testcase_09 AC 138 ms
41,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
 
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int TMP = 0xffff;
		for(int i = 0; i < n; i++) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			int c = sc.nextInt();
			int d = sc.nextInt();
			boolean ok = sc.next().equals("YES")?true:false;
			if(ok) TMP &= ((1 << a) | (1 << b) | (1 << c) | (1 << d));
			else TMP &= ~((1 << a) | (1 << b) | (1 << c) | (1 << d));
		}
		for(int i = 0; i < 10; i++) {
			if((TMP & (1 << i)) != 0) System.out.println(i);
		}
	}
}
0