結果
問題 | No.154 市バス |
ユーザー | kenji_shioya |
提出日時 | 2016-06-26 22:24:01 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,215 bytes |
コンパイル時間 | 3,212 ms |
コンパイル使用メモリ | 77,580 KB |
実行使用メモリ | 58,524 KB |
最終ジャッジ日時 | 2024-10-13 08:35:56 |
合計ジャッジ時間 | 7,338 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 386 ms
46,716 KB |
testcase_01 | AC | 403 ms
46,292 KB |
testcase_02 | AC | 401 ms
47,032 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 124 ms
41,316 KB |
testcase_06 | AC | 108 ms
41,592 KB |
testcase_07 | AC | 532 ms
46,752 KB |
testcase_08 | RE | - |
ソースコード
import java.util.*; public class Exercise129{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); for(int i = 0; i < n; i++){ judge(sc.next()); } } private static void judge(String s){ char[] sa = s.toCharArray(); if(sa[sa.length - 1] != 'R' || sa[sa.length - 2] == 'W'){ impossible(); return; } for(int i = sa.length - 1; i >= 0; i--){ if(sa[i] == 'R'){ boolean isGExist = false; for(int j = i - 1; j >= 0; j--){ if(sa[j] == 'G'){ isGExist = true; sa[j] = 'x'; boolean isWExist = false; for(int k = j - 1; k >= 0; k--){ if(sa[k] == 'W'){ isWExist = true; sa[k] = 'x'; break; }else if(k == 0 && !isWExist){ impossible(); return; } } break; }else if(j == 0 && !isGExist){ impossible(); return; } } } } System.out.println("possible"); } private static void impossible(){ System.out.println("impossible"); } }