結果
問題 | No.154 市バス |
ユーザー | バカらっく |
提出日時 | 2019-11-05 02:02:50 |
言語 | Kotlin (1.9.23) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 967 bytes |
コンパイル時間 | 14,605 ms |
コンパイル使用メモリ | 441,804 KB |
実行使用メモリ | 68,496 KB |
最終ジャッジ日時 | 2024-09-14 23:58:41 |
合計ジャッジ時間 | 20,730 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | AC | 318 ms
51,728 KB |
testcase_06 | AC | 315 ms
51,688 KB |
testcase_07 | MLE | - |
testcase_08 | AC | 319 ms
51,576 KB |
コンパイルメッセージ
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 == 'G' } if(idx < 0) { val idx2 = line.indexOfFirst { it == 'W' } if(idx2 < 0) { return false } else { line[idx2] = 'W' } } else { line[idx] = 'W' } } } return line.all { it == 'W' } }