結果
| 問題 | No.24 数当てゲーム | 
| コンテスト | |
| ユーザー |  kuramu | 
| 提出日時 | 2016-01-20 11:46:35 | 
| 言語 | Java (openjdk 23) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 48 ms / 5,000 ms | 
| コード長 | 992 bytes | 
| コンパイル時間 | 1,900 ms | 
| コンパイル使用メモリ | 77,600 KB | 
| 実行使用メモリ | 37,240 KB | 
| 最終ジャッジ日時 | 2024-09-21 14:44:13 | 
| 合計ジャッジ時間 | 3,016 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 10 | 
ソースコード
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
public class Main {
	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      int[] num = new int[10];
	      int max = 0;
	      try {
		      int N = Integer.parseInt(stdReader.readLine());
		      
		      for(int i=0;i<N;i++){
		    	  String[] temps = stdReader.readLine().split(" ");
		    	  if(temps[4].equals("YES")){
		    		  for(int j=0;j<4;j++) num[Integer.parseInt(temps[j])]++;		    		  
		    	  }else{
		    		  for(int j=0;j<4;j++) num[Integer.parseInt(temps[j])]--;
		    	  }
		      }
		      for(int i=0;i<10;i++){
		    	  if(max < num[i]) max = num[i];
		      }		      
		      for(int i=0;i<10;i++){
		    	  if(max == num[i]) System.out.println(i);
		      }	      
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}	
}
            
            
            
        