結果
問題 | No.154 市バス |
ユーザー | jp_ste |
提出日時 | 2015-03-18 06:08:04 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,423 bytes |
コンパイル時間 | 1,995 ms |
コンパイル使用メモリ | 77,416 KB |
実行使用メモリ | 47,452 KB |
最終ジャッジ日時 | 2024-10-13 07:13:12 |
合計ジャッジ時間 | 5,859 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 124 ms
41,360 KB |
testcase_06 | AC | 122 ms
41,052 KB |
testcase_07 | AC | 575 ms
47,452 KB |
testcase_08 | AC | 125 ms
41,128 KB |
ソースコード
import java.util.Scanner; public 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++) { char[] S = sc.next().toCharArray(); //一番右はR if(S[S.length-1] != 'R') { System.out.println("impossible"); continue; } //RとGの個数は同じ int rNum = getCharCount(S, 'R'); int gNum = getCharCount(S, 'G'); if(rNum>0 && gNum>0 && (rNum==gNum)) { } else { System.out.println("impossible"); continue; } for(int j=0; j<rNum; j++) { int r = getCharIndex(S, S.length, 'R'); int g = getCharIndex(S, r, 'G'); int w = getCharIndex(S, g, 'W'); if(r<0 || g<0 || w<0) { break; } if( (r > g && r > w) && (w < g && w < r) ) { S[r] = S[g] = S[w] = ' '; } else { break; } } rNum = getCharCount(S, 'R'); if(rNum == 0) { System.out.println("possible"); } else { System.out.println("impossible"); } } } static int getCharIndex(char[] list, int edge, char c) { for(int i=edge-1; i>=0; i--) { if(c == 'G') { if(list[i] == 'W') return -1; } if(list[i] == c) return i; } return -1; } static int getCharCount(char[] list, char c) { int ret = 0; for(int i=0; i<list.length; i++) { if(list[i] == c) ret++; } return ret; } }