結果

問題 No.516 赤と青の風船
ユーザー syuki791syuki791
提出日時 2017-07-09 15:57:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 1,881 ms
コンパイル使用メモリ 73,636 KB
実行使用メモリ 41,080 KB
最終ジャッジ日時 2024-10-07 04:32:10
合計ジャッジ時間 3,373 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,896 KB
testcase_01 AC 99 ms
39,900 KB
testcase_02 AC 110 ms
40,680 KB
testcase_03 AC 111 ms
41,080 KB
testcase_04 AC 112 ms
40,768 KB
testcase_05 AC 114 ms
40,952 KB
testcase_06 AC 99 ms
39,900 KB
testcase_07 AC 114 ms
40,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
	Scanner s = new Scanner(System.in);
	
	String[] str = new String[3];
	str[0]= s.nextLine();
	str[1]= s.nextLine();
	str[2]= s.nextLine();
	int red = 0;
	int blue = 0;
	
	for(int i =0;i<3;i++){
		if(str[i].equals("RED")){
			red++;
		}else{
			blue++;
		}
	}
	if(red>blue){
		System.out.println("RED");
	}else{
		System.out.println("BLUE");
	}
	
	
	}
}
0