結果
問題 | No.154 市バス |
ユーザー | ムチャ |
提出日時 | 2016-06-27 11:49:35 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,002 bytes |
コンパイル時間 | 3,413 ms |
コンパイル使用メモリ | 79,952 KB |
実行使用メモリ | 48,464 KB |
最終ジャッジ日時 | 2024-10-13 08:36:41 |
合計ジャッジ時間 | 6,834 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 358 ms
48,464 KB |
testcase_01 | AC | 363 ms
48,120 KB |
testcase_02 | AC | 344 ms
48,244 KB |
testcase_03 | AC | 369 ms
48,176 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 359 ms
48,244 KB |
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<>(); 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"); } } }