結果

問題 No.24 数当てゲーム
ユーザー SuunnSuunn
提出日時 2018-11-20 05:08:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 719 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 41,112 KB
最終ジャッジ日時 2024-06-06 21:04:13
合計ジャッジ時間 3,785 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,724 KB
testcase_01 AC 109 ms
40,732 KB
testcase_02 AC 109 ms
40,872 KB
testcase_03 AC 112 ms
39,420 KB
testcase_04 AC 96 ms
41,000 KB
testcase_05 AC 109 ms
40,788 KB
testcase_06 AC 99 ms
40,860 KB
testcase_07 AC 116 ms
40,868 KB
testcase_08 AC 108 ms
40,788 KB
testcase_09 AC 97 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		Boolean[] Yes = new Boolean[10];
		
		Arrays.fill(Yes, true);
;
		for(int i=0;i<N;i++){
			int A = sc.nextInt();
			int B = sc.nextInt();
			int C = sc.nextInt();
			int D = sc.nextInt();
			String E = sc.next();
			if(E.equals("YES")){
				for(int j=0;j<10;j++){
					if(j!=A&&j!=B&&j!=C&&j!=D){
						Yes[j] = false;
					}
				}
			}else{
				Yes[A] = false;
				Yes[B] = false;
				Yes[C] = false;
				Yes[D] = false;
			}
		}
		
		for(int i=0;i<10;i++){
			if(Yes[i]){
				System.out.println(i);
			}
		}
	}
	
}
0