結果

問題 No.516 赤と青の風船
ユーザー YOSHIYOSHI
提出日時 2021-03-17 21:56:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 4,374 ms
コンパイル使用メモリ 74,252 KB
実行使用メモリ 50,408 KB
最終ジャッジ日時 2024-11-15 16:35:17
合計ジャッジ時間 4,533 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,408 KB
testcase_01 AC 50 ms
50,272 KB
testcase_02 AC 49 ms
50,012 KB
testcase_03 AC 50 ms
50,192 KB
testcase_04 AC 51 ms
50,124 KB
testcase_05 AC 50 ms
50,400 KB
testcase_06 AC 49 ms
50,292 KB
testcase_07 AC 49 ms
50,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000516_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		int r =0;
		for(int i = 0; i < 3; i++) {
			String c = br.readLine();
			if("RED".equals(c)) r++;
		}
		System.out.println(r > 1 ? "RED" : "BLUE");
	}
}
0