結果
問題 | No.516 赤と青の風船 |
ユーザー | TwinkleStar74 |
提出日時 | 2017-10-07 02:45:35 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 57 ms / 2,000 ms |
コード長 | 773 bytes |
コンパイル時間 | 3,319 ms |
コンパイル使用メモリ | 75,000 KB |
実行使用メモリ | 37,180 KB |
最終ジャッジ日時 | 2024-11-17 03:18:38 |
合計ジャッジ時間 | 4,428 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
36,904 KB |
testcase_01 | AC | 53 ms
36,864 KB |
testcase_02 | AC | 56 ms
36,556 KB |
testcase_03 | AC | 54 ms
37,180 KB |
testcase_04 | AC | 57 ms
36,968 KB |
testcase_05 | AC | 54 ms
36,492 KB |
testcase_06 | AC | 55 ms
37,028 KB |
testcase_07 | AC | 54 ms
36,952 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No516{ public static void main(String[] args) { try { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] str = new String[3]; setColor(br, str); getColor(str); System.out.println(getColor(str)); } catch (IOException e) { e.getStackTrace(); } } public static void setColor(BufferedReader br, String[] s) throws IOException { for(int i=0; i<3; i++) s[i] = br.readLine(); } public static String getColor(String[] s){ int RED = 0; int BLUE = 0; for(int i=0; i<s.length; i++){ if(s[i].equals("RED")) RED++; else BLUE++; } if(RED > BLUE) return "RED"; else return "BLUE"; } }