結果

問題 No.24 数当てゲーム
ユーザー mustonmuston
提出日時 2016-05-12 13:25:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 735 bytes
コンパイル時間 1,982 ms
コンパイル使用メモリ 77,584 KB
実行使用メモリ 54,012 KB
最終ジャッジ日時 2024-10-05 13:56:46
合計ジャッジ時間 3,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,912 KB
testcase_01 AC 112 ms
54,012 KB
testcase_02 AC 117 ms
53,644 KB
testcase_03 AC 113 ms
53,876 KB
testcase_04 AC 113 ms
53,912 KB
testcase_05 AC 112 ms
52,684 KB
testcase_06 AC 110 ms
53,064 KB
testcase_07 AC 106 ms
52,884 KB
testcase_08 AC 112 ms
53,716 KB
testcase_09 AC 120 ms
53,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class Aaf {
  public static void main(String[] args){
    Scanner scan = new Scanner(System.in);
    int N = scan.nextInt();
    int [] qst = {0,0,0,0,0,0,0,0,0,0};
    for(int i=0; i<N; i++){
      int A = scan.nextInt();
      int B = scan.nextInt();
      int C = scan.nextInt();
      int D = scan.nextInt();
      String R = scan.next();
      if(R.equals("YES")){
        for(int j=0;j<qst.length;j++){
          if(j!=A&&j!=B&&j!=C&&j!=D){
            qst[j]=1;
          }
        }
      }else{
        qst[A]=1;
        qst[B]=1;
        qst[C]=1;
        qst[D]=1;
      }
    }
    for(int k=0;k<qst.length;k++){
      if(qst[k]==0){
        System.out.println(k);
      }
    }
  }
}
0