結果

問題 No.516 赤と青の風船
ユーザー fal_rndfal_rnd
提出日時 2017-06-27 19:51:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 1,859 ms
コンパイル使用メモリ 75,116 KB
実行使用メモリ 53,936 KB
最終ジャッジ日時 2024-10-04 13:31:22
合計ジャッジ時間 3,514 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
52,696 KB
testcase_01 AC 102 ms
52,664 KB
testcase_02 AC 109 ms
53,936 KB
testcase_03 AC 109 ms
53,908 KB
testcase_04 AC 109 ms
53,788 KB
testcase_05 AC 109 ms
52,932 KB
testcase_06 AC 92 ms
52,540 KB
testcase_07 AC 96 ms
52,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class A{
	static Scanner s=new java.util.Scanner(System.in);
	public static void main(String[]__){
		int r=0,b=0;
		for(int i=0;i<3;i++)
			if(s.next().equals("RED"))r++;else b++;
		System.out.println(r>b?"RED":"BLUE");
	}
}
0