結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
しらゆき
|
| 提出日時 | 2015-12-31 09:46:56 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 748 bytes |
| 記録 | |
| コンパイル時間 | 536 ms |
| コンパイル使用メモリ | 104,576 KB |
| 実行使用メモリ | 22,400 KB |
| 最終ジャッジ日時 | 2026-04-30 16:40:41 |
| 合計ジャッジ時間 | 1,473 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 5 WA * 3 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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;
string s = Console.ReadLine();
for (int j=0; j < s.Length; j++)
{
if (s[j] == 'G') g++;
if (s[j] == 'R') r++;
if (r > g)
{
Console.WriteLine("impossible");
break;
}
if (j == s.Length - 1)
{
if (r == g) Console.WriteLine("possible");
else Console.WriteLine("impossible");
}
}
}
}
}
しらゆき