結果
問題 | No.516 赤と青の風船 |
ユーザー | Ryanak |
提出日時 | 2017-09-07 22:43:56 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 330 bytes |
コンパイル時間 | 2,448 ms |
コンパイル使用メモリ | 74,412 KB |
実行使用メモリ | 41,700 KB |
最終ジャッジ日時 | 2024-11-07 11:52:36 |
合計ジャッジ時間 | 4,046 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 126 ms
41,192 KB |
testcase_02 | AC | 112 ms
39,864 KB |
testcase_03 | AC | 126 ms
41,152 KB |
testcase_04 | WA | - |
testcase_05 | AC | 125 ms
41,256 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a =0; for (int i=1;i<3;i++){ if (sc.nextLine()=="BLUE")a++; } if(a<=2)System.out.println("BLUE"); else System.out.println("RED"); } }