結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
kou6839
|
| 提出日時 | 2015-02-24 21:04:45 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 838 bytes |
| コンパイル時間 | 2,532 ms |
| コンパイル使用メモリ | 77,208 KB |
| 実行使用メモリ | 45,236 KB |
| 最終ジャッジ日時 | 2024-10-13 07:00:59 |
| 合計ジャッジ時間 | 6,497 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 6 WA * 2 |
ソースコード
import java.math.*;
import java.util.*;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
for(int i=0;i<t;i++){
String string = sc.next();
int gc=0;
int rc=0;
int wc=0;
for(int j=0;j<string.length();j++){
if(string.charAt(j)=='G') gc++;
if(string.charAt(j)=='R') rc++;
if(string.charAt(j)=='W') wc++;
}
if(gc==0||rc==0||wc==0){
System.out.println("impossible");
continue;
}
if(gc!=rc){
System.out.println("impossible");
continue;
}
if(string.lastIndexOf("R")<string.lastIndexOf("G")){
System.out.println("impossible");
continue;
}
if(string.lastIndexOf("G")<string.lastIndexOf("W")){
System.out.println("impossible");
continue;
}
System.out.println("possible");
}
}
}
kou6839