結果

問題 No.516 赤と青の風船
ユーザー tentententen
提出日時 2020-11-12 08:21:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 1,730 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 41,356 KB
最終ジャッジ日時 2024-07-22 19:00:17
合計ジャッジ時間 3,188 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,912 KB
testcase_01 AC 89 ms
39,928 KB
testcase_02 AC 100 ms
41,304 KB
testcase_03 AC 92 ms
40,180 KB
testcase_04 AC 98 ms
41,356 KB
testcase_05 AC 94 ms
40,764 KB
testcase_06 AC 90 ms
39,908 KB
testcase_07 AC 102 ms
40,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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