結果

問題 No.516 赤と青の風船
ユーザー Mcpu3Mcpu3
提出日時 2018-04-14 20:41:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-06-26 22:35:09
合計ジャッジ時間 3,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,824 KB
testcase_01 AC 125 ms
53,876 KB
testcase_02 AC 121 ms
53,872 KB
testcase_03 AC 123 ms
54,132 KB
testcase_04 AC 122 ms
53,844 KB
testcase_05 AC 109 ms
52,984 KB
testcase_06 AC 123 ms
54,180 KB
testcase_07 AC 126 ms
54,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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