結果
問題 | No.154 市バス |
ユーザー | mizzsig |
提出日時 | 2018-02-04 14:14:45 |
言語 | PHP (843.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 857 bytes |
コンパイル時間 | 111 ms |
コンパイル使用メモリ | 32,020 KB |
実行使用メモリ | 32,404 KB |
最終ジャッジ日時 | 2024-10-13 09:18:03 |
合計ジャッジ時間 | 1,563 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
30,976 KB |
testcase_01 | AC | 118 ms
30,732 KB |
testcase_02 | AC | 115 ms
30,864 KB |
testcase_03 | AC | 97 ms
30,924 KB |
testcase_04 | AC | 113 ms
31,060 KB |
testcase_05 | WA | - |
testcase_06 | AC | 36 ms
31,168 KB |
testcase_07 | AC | 113 ms
30,992 KB |
testcase_08 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $n = trim(fgets(STDIN)); for ($i = 0; $i < $n; $i++) { $str = trim(fgets(STDIN)); $length = strlen($str); $sum['W'] = 0; $sum['G'] = 0; $sum['R'] = 0; $isPossible = true; // それぞれのテストケースを確認 for ($l = 0; $l < $length; $l++) { $sum[$str[$l]]++; if ($sum['G'] < $sum['R']) { $isPossible = false; break; } else if (($sum['W'] < $sum['G']) || ($sum['W'] < $sum['R'])) { $isPossible = false; break; } } if ($sum['G'] != $sum['R']) { $isPossible = false; } else if ($sum['W'] < $sum['G']) { $isPossible = false; } else if (($sum['G'] == 0) || ($sum['R'] == 0)) { $isPossible = false; } if ($isPossible) { echo 'possible' . "\n"; } else { echo 'impossible' . "\n"; } }