結果
問題 | No.154 市バス |
ユーザー | atkrym |
提出日時 | 2016-10-24 00:51:56 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,208 bytes |
コンパイル時間 | 1,979 ms |
コンパイル使用メモリ | 77,520 KB |
実行使用メモリ | 62,008 KB |
最終ジャッジ日時 | 2024-10-13 08:46:36 |
合計ジャッジ時間 | 5,962 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 390 ms
61,880 KB |
testcase_01 | AC | 411 ms
61,932 KB |
testcase_02 | AC | 459 ms
62,008 KB |
testcase_03 | AC | 399 ms
59,116 KB |
testcase_04 | WA | - |
testcase_05 | AC | 118 ms
53,764 KB |
testcase_06 | AC | 117 ms
54,040 KB |
testcase_07 | AC | 432 ms
61,836 KB |
testcase_08 | AC | 123 ms
53,884 KB |
ソースコード
import java.util.*; public class Main { private static Scanner sc = new Scanner(System.in); public static void main(String[] args) throws Exception { int n = sc.nextInt(); for (int i = 0;i < n;i++) { if (solve(sc.next())) { System.out.println("possible"); } else { System.out.println("impossible"); } } } private static boolean solve(String s) { int w = 0; List<Integer> g = new ArrayList<>(); List<Integer> r = new ArrayList<>(); for (int i = s.length()-1;i >= 0;i--) { char c = s.charAt(i); if (c == 'W') { if (g.isEmpty() || r.isEmpty()) { return false; } else { w++; } } if (c == 'G') g.add(i); if (c == 'R') r.add(i); } if (g.size() != r.size()) return false; if (w < g.size()) return false; for (int i = 0;i < g.size();i++) { if (r.get(i) < g.get(i)) { return false; } } return true; } }