結果

問題 No.154 市バス
ユーザー しらゆきしらゆき
提出日時 2015-12-31 10:13:18
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 922 bytes
コンパイル時間 871 ms
コンパイル使用メモリ 103,936 KB
実行使用メモリ 32,384 KB
最終ジャッジ日時 2024-04-21 09:01:46
合計ジャッジ時間 7,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

class Program
{
    static void Main()
    {
        int t = int.Parse(Console.ReadLine());

        for (int i=0;i< t; i++)
        {
            int g = 0, r = 0, w = 0;
            string s = Console.ReadLine();
            for (int j=0; j < s.Length; j++)
            {
                if (s[j] == 'W') w++;
                if (s[j] == 'G') g++;
                if (s[j] == 'R') r++;
                int cntg = s.Length - s.Replace("G", "").Length;
                if (r > g || g > w || (g == cntg && s[j] == 'W'))
                {
                    Console.WriteLine("impossible");
                    break;
                }
                if (j == s.Length - 1)
                {
                    if (s[j] == 'R' && r == g && w >= g) Console.WriteLine("possible");
                    else Console.WriteLine("impossible");
                }
            }
        }
    }
}
0