結果

問題 No.516 赤と青の風船
ユーザー fjafjafjafjafjafja
提出日時 2017-07-18 15:35:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 2,934 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 41,180 KB
最終ジャッジ日時 2024-10-08 10:51:52
合計ジャッジ時間 4,288 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,576 KB
testcase_01 AC 109 ms
41,180 KB
testcase_02 AC 107 ms
40,828 KB
testcase_03 AC 90 ms
39,512 KB
testcase_04 AC 106 ms
41,132 KB
testcase_05 AC 96 ms
40,176 KB
testcase_06 AC 106 ms
41,120 KB
testcase_07 AC 108 ms
40,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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