結果

問題 No.24 数当てゲーム
ユーザー kuramukuramu
提出日時 2016-01-20 11:46:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 992 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 77,560 KB
実行使用メモリ 53,572 KB
最終ジャッジ日時 2023-10-21 13:29:14
合計ジャッジ時間 3,218 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,572 KB
testcase_01 AC 51 ms
53,572 KB
testcase_02 AC 49 ms
53,512 KB
testcase_03 AC 50 ms
53,568 KB
testcase_04 AC 50 ms
53,564 KB
testcase_05 AC 50 ms
53,568 KB
testcase_06 AC 48 ms
53,568 KB
testcase_07 AC 49 ms
53,568 KB
testcase_08 AC 49 ms
53,572 KB
testcase_09 AC 49 ms
53,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
	      }
	}	
}
0