結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
kuuso1
|
| 提出日時 | 2015-02-17 23:47:46 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,273 bytes |
| コンパイル時間 | 1,160 ms |
| コンパイル使用メモリ | 107,520 KB |
| 実行使用メモリ | 21,632 KB |
| 最終ジャッジ日時 | 2024-10-13 06:26:31 |
| 合計ジャッジ時間 | 2,250 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 7 WA * 1 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Collections;
using System.Collections.Generic;
class TEST{
static void Main(){
Sol mySol =new Sol();
mySol.Solve();
}
}
class Sol{
public void Solve(){
for(;T>0;T--){
String S=rs();
int r=0;
int g=0;
int w=0;
bool chk=true;
for(int i=S.Length-1;i>=0;i--){
if(S[i]=='R'){
r++;
continue;
}
if(S[i]=='W'){
w++;
if(r==0){chk=false;break;}
if(g==0){chk=false;break;}
continue;
}
if(S[i]=='G'){
g++;
if(g>r){chk=false;break;}
continue;
}
}
Console.WriteLine( (chk&(r==g)&(r+g+w>=3)&(w>=r))?"possible":"impossible");
}
}
int T;
public Sol(){
T=ri();
}
static String rs(){return Console.ReadLine();}
static int ri(){return int.Parse(Console.ReadLine());}
static long rl(){return long.Parse(Console.ReadLine());}
static double rd(){return double.Parse(Console.ReadLine());}
static String[] rsa(){return Console.ReadLine().Split(' ');}
static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));}
static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));}
static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));}
}
kuuso1