結果

問題 No.516 赤と青の風船
ユーザー shinwisteriashinwisteria
提出日時 2018-02-16 22:56:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 5,519 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-06-23 04:29:43
合計ジャッジ時間 4,182 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,356 KB
testcase_01 AC 112 ms
53,964 KB
testcase_02 AC 109 ms
54,088 KB
testcase_03 AC 108 ms
53,880 KB
testcase_04 AC 96 ms
52,896 KB
testcase_05 AC 110 ms
53,920 KB
testcase_06 AC 97 ms
52,828 KB
testcase_07 AC 111 ms
53,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int r = 0,b = 0;
		for(int i = 0;i < 3;i++){
			if(s.nextLine().equals("RED")){
				r++;
			}else{
				b++;
			}
		}
		s.close();
		if(r > b){
			System.out.println("RED");
		}else{
			System.out.println("BLUE");
		}

	}

}
0