結果

問題 No.154 市バス
ユーザー a3636takoa3636tako
提出日時 2016-07-22 19:12:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,567 bytes
コンパイル時間 1,988 ms
コンパイル使用メモリ 77,400 KB
実行使用メモリ 44,076 KB
最終ジャッジ日時 2024-04-21 09:52:47
合計ジャッジ時間 3,734 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
43,588 KB
testcase_01 AC 160 ms
43,696 KB
testcase_02 AC 161 ms
43,644 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 44 ms
36,516 KB
testcase_06 AC 43 ms
36,432 KB
testcase_07 AC 156 ms
43,984 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
 
public class Main{
	public void solve(){
		int T = nextInt();
		
		for(int i = 0; i < T; i++){
			String str = next();
			int r = 0;
			int g = 0;
			boolean w = false;
			boolean clear = true;
			for(int j = str.length() - 1; j >= 0; j--){
				switch(str.charAt(j)){
				case 'R':
					r++;
					break;
					
				case 'G':
					r--;
					w = true;
					if(r < 0){
						clear = false;
					}
					break;
					
				case 'W':
					if(!w){
						clear = false;
					}
					break;
				}
			}
			if(clear){
				out.println("possible");
			}else{
				out.println("impossible");
			}
		}
		
	}
	
	public boolean check(String str, int idx){
		if(idx + 3 >= str.length()) return false;
		if(str.charAt(idx) != 'i') return false;
		if(str.charAt(idx + 1) != 'w') return false;
		if(str.charAt(idx + 2) != 'i') return false;
		return true;
	}
	
	private static PrintWriter out;
	public static void main(String[] args){
		out = new PrintWriter(System.out);
		new Main().solve();
		out.flush();
	}
	
	
	
	public static int nextInt(){
		int num = 0;
		String str = next();
		boolean minus = false;
		int i = 0;
		if(str.charAt(0) == '-'){
			minus = true;
			i++;
		}
		int len = str.length();
		for(;i < len; i++){
			char c = str.charAt(i);
			if(!('0' <= c && c <= '9')) throw new RuntimeException();
			num = num * 10 + (c - '0');
		}
		return minus ? -num : num;
	}
	
	public static long nextLong(){
		long num = 0;
		String str = next();
		boolean minus = false;
		int i = 0;
		if(str.charAt(0) == '-'){
			minus = true;
			i++;
		}
		int len = str.length();
		for(;i < len; i++){
			char c = str.charAt(i);
			if(!('0' <= c && c <= '9')) throw new RuntimeException();
			num = num * 10l + (c - '0');
		}
		return minus ? -num : num;
	}
	public static String next(){
		int c;
		while(!isAlNum(c = read())){}
		StringBuilder build = new StringBuilder();
		build.append((char)c);
		while(isAlNum(c = read())){
			build.append((char)c);
		}
		return build.toString();
	}
	
	
	private static byte[] inputBuffer = new byte[1024];
	private static int bufferLength = 0;
	private static int bufferIndex = 0;
	private static int read(){
		if(bufferLength < 0) throw new RuntimeException();
		if(bufferIndex >= bufferLength){
			try{
				bufferLength = System.in.read(inputBuffer);
				bufferIndex = 0;
			}catch(IOException e){
				throw new RuntimeException(e);
			}
			if(bufferLength <= 0) return (bufferLength = -1);
		}
		return inputBuffer[bufferIndex++];
	}
	
	private static boolean isAlNum(int c){
		return '!' <= c && c <= '~';
	}
}
0