結果

問題 No.516 赤と青の風船
ユーザー tsunabittsunabit
提出日時 2018-07-01 14:14:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 3,415 ms
コンパイル使用メモリ 75,396 KB
実行使用メモリ 53,996 KB
最終ジャッジ日時 2024-07-01 01:10:39
合計ジャッジ時間 5,196 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,968 KB
testcase_01 AC 131 ms
53,952 KB
testcase_02 AC 133 ms
53,996 KB
testcase_03 AC 131 ms
53,972 KB
testcase_04 AC 127 ms
53,916 KB
testcase_05 AC 129 ms
53,772 KB
testcase_06 AC 132 ms
53,880 KB
testcase_07 AC 129 ms
53,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;

public class No516 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		int count = 0;
		for(int i = 0; i < 3; i++) {
			if("RED".equals(sc.next())) {
				count++;
			}
		}
		System.out.println(count > 1 ? "RED" : "BLUE");
	}
}
0