結果
問題 | No.154 市バス |
ユーザー | ムチャ |
提出日時 | 2016-06-27 11:48:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,028 bytes |
コンパイル時間 | 3,855 ms |
コンパイル使用メモリ | 79,192 KB |
実行使用メモリ | 61,300 KB |
最終ジャッジ日時 | 2024-10-13 08:36:28 |
合計ジャッジ時間 | 7,235 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
import java.util.ArrayDeque; import java.util.ArrayList; import java.util.Deque; import java.util.List; import java.util.Scanner; public class TownBus { public static void main(String[] args) { List<String> input = new ArrayList<>(); try(Scanner s = new Scanner(System.in)){ int c = Integer.parseInt(s.nextLine()); //s.nextLine(); for(int i = 0; i < c ; i++){ String line = s.nextLine(); input.add(line); } } for(String line : input){ check(line); } } private static void check(String s){ Deque<Character> green = new ArrayDeque<>(); System.out.println(s); for(char light : s.toCharArray()){ switch(light){ case 'W': break; case 'G': green.push(light); break; case 'R': if(green.pollFirst() == null){ System.out.println("impossible"); return; } break; default: System.out.println("impossible"); return; } } if(green.isEmpty()){ System.out.println("possible"); }else{ System.out.println("impossible"); } } }