結果
問題 | No.154 市バス |
ユーザー | htensai |
提出日時 | 2019-12-26 13:13:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 946 bytes |
コンパイル時間 | 2,034 ms |
コンパイル使用メモリ | 74,564 KB |
実行使用メモリ | 58,916 KB |
最終ジャッジ日時 | 2024-10-03 08:58:42 |
合計ジャッジ時間 | 4,940 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 307 ms
57,932 KB |
testcase_01 | AC | 317 ms
58,460 KB |
testcase_02 | AC | 274 ms
58,228 KB |
testcase_03 | AC | 338 ms
58,916 KB |
testcase_04 | WA | - |
testcase_05 | AC | 117 ms
54,472 KB |
testcase_06 | AC | 113 ms
52,948 KB |
testcase_07 | AC | 332 ms
58,816 KB |
testcase_08 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { char[] arr = sc.next().toCharArray(); int count = 0; int wcount = 0; for (char c : arr) { if (c == 'G') { count++; wcount = 0; } else if(c == 'R') { count--; } else { wcount++; } if (count < 0) { break; } } if (count == 0 && wcount == 0) { sb.append("possible"); } else { sb.append("impossible"); } sb.append("\n"); } System.out.print(sb); } }