結果

問題 No.24 数当てゲーム
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-08 11:40:47
言語 Java
(openjdk 23)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 935 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 77,824 KB
実行使用メモリ 43,048 KB
最終ジャッジ日時 2024-07-04 11:01:21
合計ジャッジ時間 4,047 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,516 KB
testcase_01 AC 131 ms
41,448 KB
testcase_02 AC 122 ms
41,200 KB
testcase_03 AC 139 ms
41,788 KB
testcase_04 AC 113 ms
43,048 KB
testcase_05 AC 111 ms
40,176 KB
testcase_06 AC 128 ms
41,796 KB
testcase_07 AC 134 ms
41,628 KB
testcase_08 AC 112 ms
40,072 KB
testcase_09 AC 124 ms
41,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n = koko.nextInt();
        int[][] a = new int[n][4];
        String[] ans = new String[n];
        int[] yes = new int[10];
        int[] no = new int[10];
        int yesc = 0;
        for(int i=0; i<n; i++){
            for(int j=0; j<4; j++){
                a[i][j] = koko.nextInt();
            }
            ans[i] = koko.next();
            if(ans[i].equals("YES")){
                for(int j=0; j<4; j++){
                    yes[a[i][j]]++;
                }
                yesc++;
            }else{
                for(int j=0; j<4; j++){
                    no[a[i][j]]++;
                }
            }
        }
        for(int i=0; i<10; i++){
            if(yes[i]==yesc&&no[i]==0){
                System.out.println(i);
            }
        }
    }
}
0