結果
問題 | No.154 市バス |
ユーザー | htensai |
提出日時 | 2020-02-17 17:31:46 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 176 ms / 2,000 ms |
コード長 | 1,290 bytes |
コンパイル時間 | 2,150 ms |
コンパイル使用メモリ | 76,972 KB |
実行使用メモリ | 43,272 KB |
最終ジャッジ日時 | 2024-10-06 15:03:39 |
合計ジャッジ時間 | 3,766 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 163 ms
43,272 KB |
testcase_01 | AC | 170 ms
43,088 KB |
testcase_02 | AC | 171 ms
43,044 KB |
testcase_03 | AC | 166 ms
43,220 KB |
testcase_04 | AC | 176 ms
42,932 KB |
testcase_05 | AC | 46 ms
36,612 KB |
testcase_06 | AC | 44 ms
36,568 KB |
testcase_07 | AC | 159 ms
43,052 KB |
testcase_08 | AC | 47 ms
36,716 KB |
ソースコード
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); } }