結果

問題 No.24 数当てゲーム
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 17:00:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 536 bytes
コンパイル時間 3,505 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 54,084 KB
最終ジャッジ日時 2024-07-08 02:39:54
合計ジャッジ時間 5,436 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,084 KB
testcase_01 AC 98 ms
54,020 KB
testcase_02 AC 111 ms
53,824 KB
testcase_03 AC 111 ms
53,668 KB
testcase_04 AC 112 ms
53,908 KB
testcase_05 AC 113 ms
53,676 KB
testcase_06 AC 109 ms
53,500 KB
testcase_07 AC 113 ms
53,712 KB
testcase_08 AC 112 ms
53,692 KB
testcase_09 AC 112 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con24 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int[] t = new int[10];
		int N = s.nextInt();
		for(int i = 0;i < N;i++){
			int a = s.nextInt() , b = s.nextInt() , c = s.nextInt() , d = s.nextInt() , add = -1;
			if(s.next().equals("YES")){
				add = 1;
			}
			t[a] += add;
			t[b] += add;
			t[c] += add;
			t[d] += add;
		}
		N = 0;
		for(int i = 0;i < 10;i++){
			if(t[i] >= t[N]){
				N = i;
			}
		}
		System.out.println(N);
	}

}
0