結果
問題 | No.154 市バス |
ユーザー | uafr_cs |
提出日時 | 2015-09-02 10:20:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,313 bytes |
コンパイル時間 | 2,179 ms |
コンパイル使用メモリ | 79,152 KB |
実行使用メモリ | 60,816 KB |
最終ジャッジ日時 | 2024-10-13 07:40:21 |
合計ジャッジ時間 | 6,203 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 427 ms
60,816 KB |
testcase_01 | AC | 416 ms
58,716 KB |
testcase_02 | AC | 456 ms
58,916 KB |
testcase_03 | WA | - |
testcase_04 | AC | 437 ms
59,152 KB |
testcase_05 | AC | 130 ms
54,128 KB |
testcase_06 | AC | 129 ms
54,220 KB |
testcase_07 | AC | 443 ms
58,924 KB |
testcase_08 | AC | 129 ms
54,024 KB |
ソースコード
import java.util.Arrays; import java.util.HashSet; import java.util.LinkedList; import java.util.Scanner; import java.util.Set; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); final int T = sc.nextInt(); for(int tt = 0; tt < T; tt++){ final char[] input = sc.next().toCharArray(); LinkedList<Integer> R_queue = new LinkedList<Integer>(); LinkedList<Integer> G_queue = new LinkedList<Integer>(); boolean ok = true; boolean catch_one = false; for(int i = input.length - 1; i >= 0; i--){ if(input[i] == 'R'){ R_queue.add(i); }else if(input[i] == 'G'){ G_queue.add(i); }else if(input[i] == 'W'){ if(R_queue.isEmpty() || G_queue.isEmpty()){ ok = false; break; } catch_one = true; } while(R_queue.size() >= 2 && G_queue.size() >= 2 && catch_one){ R_queue.remove(); G_queue.remove(); while(!G_queue.isEmpty() && G_queue.peek() > R_queue.peek()){ G_queue.remove(); } catch_one = false; } //System.out.println(i + " " + R_queue + " " + G_queue); if(R_queue.size() < G_queue.size()){ ok = false; break; } } System.out.println(ok && catch_one ? "possible" : "impossible"); } } }