結果

問題 No.154 市バス
ユーザー yun_appyun_app
提出日時 2016-06-11 00:59:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 1,271 bytes
コンパイル時間 2,202 ms
コンパイル使用メモリ 74,300 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2023-08-03 11:40:14
合計ジャッジ時間 4,746 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 228 ms
53,952 KB
testcase_01 AC 228 ms
53,740 KB
testcase_02 AC 227 ms
53,976 KB
testcase_03 AC 217 ms
54,164 KB
testcase_04 AC 229 ms
53,568 KB
testcase_05 AC 46 ms
49,372 KB
testcase_06 AC 45 ms
49,152 KB
testcase_07 AC 219 ms
53,680 KB
testcase_08 AC 48 ms
49,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone{
    public static void main(String[] args) throws Exception{
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        
        start:for(int i=0;i<n;i++){
            String str = br.readLine();
            int bus = 0;
            int r = 0;
            int w = 0;
            for(int j=str.length()-1;j>=0;j--){
                char c = str.charAt(j);
                if(c=='W'){
                    if(bus==0){
                        System.out.println("impossible");
                        continue start;
                    }
                    if(bus>w)
                        w++;
                }else if(c=='R'){
                    r++;
                }else if(c=='G'){
                    if(r==0){
                        System.out.println("impossible");
                        continue start;
                    }
                    r--;
                    bus++;
                }
            }
            if(r==0 && w>=bus)
                System.out.println("possible");
            else
                System.out.println("impossible");
        }
    }
}

0