結果

問題 No.154 市バス
ユーザー GrenacheGrenache
提出日時 2016-02-14 10:13:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,103 bytes
コンパイル時間 4,362 ms
コンパイル使用メモリ 77,448 KB
実行使用メモリ 46,840 KB
最終ジャッジ日時 2024-10-13 08:01:59
合計ジャッジ時間 8,099 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 395 ms
46,236 KB
testcase_01 AC 383 ms
46,176 KB
testcase_02 AC 397 ms
46,532 KB
testcase_03 AC 401 ms
46,124 KB
testcase_04 WA -
testcase_05 AC 131 ms
41,140 KB
testcase_06 AC 129 ms
41,040 KB
testcase_07 AC 338 ms
46,460 KB
testcase_08 AC 130 ms
41,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder154 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int t = sc.nextInt();
        for (int tcase = 0; tcase < t; tcase++) {
        	char[] s = sc.next().toCharArray();
        	int n = s.length;

        	boolean flag = true;
        	int r = 0;
        	int g = 0;
        	int w = 0;
        	for (int i = n - 1; flag && i >= 0; i--) {
        		char c = s[i];

        		if (c == 'R') {
        			r++;
        		} else if (c == 'G') {
        			g++;
        		} else {
        			w++;
        		}

        		if (g > r) {
        			flag = false;
        		}
        		if (w > 0 && g == 0) {
        			flag = false;
        		}
        		if (c > 0 && g > 1) {
        			w = 0;
        			g--;
        			r--;
        		}
        	}

        	if (r != 1 || g != 1 || w == 0) {
        		flag = false;
        	}

        	if (flag) {
        		System.out.println("possible");
        	} else {
        		System.out.println("impossible");
        	}
        }

        sc.close();
    }
}
0