結果

問題 No.516 赤と青の風船
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-26 23:47:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 3,521 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 41,252 KB
最終ジャッジ日時 2024-11-21 20:16:08
合計ジャッジ時間 5,325 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,068 KB
testcase_01 AC 126 ms
41,104 KB
testcase_02 AC 128 ms
41,192 KB
testcase_03 AC 129 ms
41,148 KB
testcase_04 AC 126 ms
41,000 KB
testcase_05 AC 127 ms
41,252 KB
testcase_06 AC 126 ms
41,104 KB
testcase_07 AC 128 ms
41,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No516 {

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