結果
問題 | No.154 市バス |
ユーザー | rutilicus |
提出日時 | 2020-12-17 19:05:07 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 612 ms / 2,000 ms |
コード長 | 1,420 bytes |
コンパイル時間 | 11,088 ms |
コンパイル使用メモリ | 430,592 KB |
実行使用メモリ | 61,400 KB |
最終ジャッジ日時 | 2024-09-21 08:12:57 |
合計ジャッジ時間 | 16,342 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 533 ms
60,192 KB |
testcase_01 | AC | 530 ms
60,208 KB |
testcase_02 | AC | 527 ms
60,156 KB |
testcase_03 | AC | 612 ms
61,400 KB |
testcase_04 | AC | 590 ms
60,192 KB |
testcase_05 | AC | 278 ms
50,900 KB |
testcase_06 | AC | 284 ms
51,016 KB |
testcase_07 | AC | 519 ms
59,888 KB |
testcase_08 | AC | 295 ms
51,032 KB |
コンパイルメッセージ
Main.kt:56:17: warning: 'appendln(String?): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator. builder.appendln(if (ok) "possible" else "impossible") ^
ソースコード
fun main() { val builder = StringBuilder() val t = readInputLine().toInt() repeat(t) { val input = readInputLine() var ok = true var rCnt = 0 var gCnt = 0 var wCnt = 0 input.forEach { when(it) { 'G' -> { gCnt++ if (gCnt > wCnt) { ok = false } } 'R' -> { rCnt++ if (rCnt > wCnt || rCnt > gCnt) { ok = false } } else -> { wCnt++ } } } gCnt = 0 rCnt = 0 wCnt = 0 input.reversed().forEach { when(it) { 'G' -> { gCnt++ if (gCnt > rCnt) { ok = false } } 'R' -> { rCnt++ } else -> { wCnt++ if (gCnt == 0 || wCnt == 0) { ok = false } } } } builder.appendln(if (ok) "possible" else "impossible") } print(builder.toString()) } fun readInputLine(): String { return readLine()!! }