結果
問題 | No.154 市バス |
ユーザー | te-sh |
提出日時 | 2018-07-11 17:15:29 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 796 bytes |
コンパイル時間 | 609 ms |
コンパイル使用メモリ | 101,616 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-13 01:25:42 |
合計ジャッジ時間 | 1,513 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
5,248 KB |
testcase_01 | AC | 11 ms
5,376 KB |
testcase_02 | AC | 12 ms
5,376 KB |
testcase_03 | AC | 11 ms
5,376 KB |
testcase_04 | AC | 11 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 9 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
ソースコード
import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string; auto rdsp(){return readln.splitter;} void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;} void readV(T...)(ref T t){auto r=rdsp;foreach(ref v;t)pick(r,v);} void main() { int n; readV(n); auto calc(string s) { auto r = 0, g = 0, w = 0; foreach_reverse (c; s) switch (c) { case 'R': ++r; break; case 'G': if (g == r) return false; ++g; break; case 'W': if (g == 0) return false; if (w < g) ++w; break; default: assert(0); } return r == g && g == w; } foreach (_; 0..n) { string s; readV(s); writeln(calc(s) ? "possible" : "impossible"); } }