結果
問題 | No.154 市バス |
ユーザー | バカらっく |
提出日時 | 2019-11-05 02:00:00 |
言語 | Kotlin (1.9.23) |
結果 |
MLE
|
実行時間 | - |
コード長 | 751 bytes |
コンパイル時間 | 14,202 ms |
コンパイル使用メモリ | 451,756 KB |
実行使用メモリ | 72,608 KB |
最終ジャッジ日時 | 2024-09-14 23:58:17 |
合計ジャッジ時間 | 20,817 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | AC | 310 ms
52,060 KB |
testcase_06 | AC | 307 ms
52,128 KB |
testcase_07 | MLE | - |
testcase_08 | WA | - |
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'arr' is never used fun main(arr:Array<String>) { ^
ソースコード
fun main(arr:Array<String>) { val inputCount = readLine()!!.toInt() (1..inputCount).map { if(isValid(readLine()!!)) "possible" else "impossible" }.forEach { println(it) } } fun isValid(inpt:String):Boolean { val log = inpt.reversed() val line = mutableListOf<Char>() for(i in log) { if(i == 'R') { line.add(i) } else if(i == 'G') { val idx = line.indexOfFirst { it == 'R' } if(idx < 0) { return false } line[idx] = 'G' } else if(i == 'W') { val idx = line.indexOfFirst { it in "GW" } if(idx < 0) { return false } line[idx] = 'W' } } return true }