結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
AreTrash
|
| 提出日時 | 2016-04-28 15:29:48 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 51 ms / 2,000 ms |
| コード長 | 808 bytes |
| コンパイル時間 | 873 ms |
| コンパイル使用メモリ | 114,756 KB |
| 実行使用メモリ | 22,528 KB |
| 最終ジャッジ日時 | 2024-10-13 08:20:33 |
| 合計ジャッジ時間 | 1,833 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 8 |
コンパイルメッセージ
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;
namespace No154_1{
public class Program{
public static void Main(string[] args){
Console.ReadLine();
string str;
while((str = Console.ReadLine()) != null){
int cntW = 0, cntG = 0, cntR = 0;
var possible = true;
foreach(var c in str){
if(c == 'W') cntW++;
if(c == 'G') cntG++;
if(c == 'R') cntR++;
if(cntW < cntG || cntG < cntR) possible = false;
}
if(cntG != cntR || str.Skip(str.LastIndexOf('G') + 1).Any(c => c == 'W'))
possible = false;
Console.WriteLine((possible ? "" : "im") + "possible");
}
}
}
}
AreTrash