結果
問題 | No.154 市バス |
ユーザー | htensai |
提出日時 | 2020-02-17 16:56:45 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,290 bytes |
コンパイル時間 | 2,254 ms |
コンパイル使用メモリ | 77,088 KB |
実行使用メモリ | 55,808 KB |
最終ジャッジ日時 | 2024-10-06 15:01:42 |
合計ジャッジ時間 | 4,649 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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.*; import java.io.*; public class Main { public static void main (String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { char[] arr = br.readLine().toCharArray(); int r = 0; int g = 0; int w = 0; boolean type = true; for (int j = arr.length - 1; j >= 0; j--) { if (arr[j] == 'W') { if (g > 0) { g--; w++; } else if (g == 0 && w == 0) { type = false; break; } } else if (arr[j] == 'G') { if (r == 0) { type = false; break; } r--; g++; } else { r++; } } if (r > 0 || g > 0) { type = false; } if (type) { sb.append("Possible"); } else { sb.append("Impossible"); } sb.append("\n"); } System.out.print(sb); } }