結果

問題 No.516 赤と青の風船
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-05 00:57:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 74,008 KB
実行使用メモリ 41,288 KB
最終ジャッジ日時 2024-06-28 01:30:30
合計ジャッジ時間 3,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,960 KB
testcase_01 AC 121 ms
41,016 KB
testcase_02 AC 121 ms
41,272 KB
testcase_03 AC 130 ms
41,172 KB
testcase_04 AC 121 ms
41,288 KB
testcase_05 AC 109 ms
40,036 KB
testcase_06 AC 122 ms
41,164 KB
testcase_07 AC 121 ms
40,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        int r = 0, b = 0;

        Scanner in = new Scanner(System.in);
        String s1 = in.next();
        if(s1.equals("RED")) r++;
        else b++;

        String s2 = in.next();
        if(s2.equals("RED")) r++;
        else b++;

        String s3 = in.next();
        if(s3.equals("RED")) r++;
        else b++;

        if(r > b) System.out.println("RED");
        else System.out.println("BLUE");
    }
}
0