結果

問題 No.516 赤と青の風船
ユーザー siraosirao
提出日時 2017-07-12 18:36:46
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 825 bytes
コンパイル時間 2,103 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 56,136 KB
最終ジャッジ日時 2024-10-07 16:45:43
合計ジャッジ時間 3,676 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,432 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 127 ms
54,088 KB
testcase_05 WA -
testcase_06 AC 110 ms
53,012 KB
testcase_07 AC 123 ms
54,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws Exception {
        int a1 = 1;
        int b1 = 1;
        int c1 = 1;
        String ans = "0";
        Scanner s = new Scanner(System.in);
        String a = s.next();
        String b = s.next();
        String c = s.next();
        if (a == "BLUE"){
            a1 = -1;
        }
        if (b == "BLUE"){
            b1 = -1;
        }
        if (c == "BLUE"){
            c1 = -1;
        }
        if (a1+b1+c1<0){
            ans = "BLUE";
        }else{
            ans = "RED";
        }
        System.out.println(ans);

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
    }
}
0