結果
問題 | No.516 赤と青の風船 |
ユーザー | fal_rnd |
提出日時 | 2017-06-27 19:52:07 |
言語 | Java (openjdk 23) |
結果 |
RE
|
実行時間 | - |
コード長 | 204 bytes |
コンパイル時間 | 1,911 ms |
コンパイル使用メモリ | 74,824 KB |
実行使用メモリ | 56,108 KB |
最終ジャッジ日時 | 2024-10-04 13:31:31 |
合計ジャッジ時間 | 3,133 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
ソースコード
class A{ public static void main(String[]__){ int r=0,b=0; for(int i=0;i<3;i++) if(new java.util.Scanner(System.in).next().equals("RED"))r++;else b++; System.out.println(r>b?"RED":"BLUE"); } }