結果

問題 No.24 数当てゲーム
ユーザー キョウチクキョウチク
提出日時 2022-05-18 22:38:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 735 bytes
コンパイル時間 3,357 ms
コンパイル使用メモリ 84,912 KB
実行使用メモリ 54,224 KB
最終ジャッジ日時 2024-09-17 02:25:10
合計ジャッジ時間 5,215 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,836 KB
testcase_01 AC 113 ms
53,804 KB
testcase_02 AC 102 ms
53,224 KB
testcase_03 AC 113 ms
54,044 KB
testcase_04 AC 99 ms
53,096 KB
testcase_05 AC 116 ms
54,132 KB
testcase_06 AC 119 ms
54,128 KB
testcase_07 AC 123 ms
54,200 KB
testcase_08 AC 120 ms
53,972 KB
testcase_09 AC 117 ms
54,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test11 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    line=sc.nextLine().split(" ");;
    int n=Integer.parseInt(line[0]);
    int[] num=new int[10];
    for(int i=0;i<n;i++){
      line=sc.nextLine().split(" ");
      switch(line[4]){
      case "YES":
        for(int i1=0;i1<10;i1++){
          num[i1]--;
        }
        for(int i1=0;i1<4;i1++){
          num[Integer.parseInt(line[i1])]++;
        }
        break;
      case "NO":
        for(int i1=0;i1<4;i1++){
          num[Integer.parseInt(line[i1])]--;
        }
        break;
      }
    }
    int i=0;
    while(num[i]<0) i++;
    System.out.println(i);
    sc.close();
  }
}
0