結果

問題 No.24 数当てゲーム
ユーザー kuramukuramu
提出日時 2016-01-20 11:46:35
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,848 KB
testcase_01 AC 48 ms
36,484 KB
testcase_02 AC 45 ms
36,988 KB
testcase_03 AC 46 ms
37,068 KB
testcase_04 AC 45 ms
36,544 KB
testcase_05 AC 47 ms
36,520 KB
testcase_06 AC 44 ms
36,984 KB
testcase_07 AC 45 ms
36,932 KB
testcase_08 AC 46 ms
36,976 KB
testcase_09 AC 46 ms
37,240 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