結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー komkomhkomkomh
提出日時 2019-06-20 10:18:44
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 311 ms / 1,000 ms
コード長 546 bytes
コンパイル時間 10,852 ms
コンパイル使用メモリ 428,208 KB
実行使用メモリ 57,916 KB
最終ジャッジ日時 2024-11-20 18:59:06
合計ジャッジ時間 21,123 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
57,760 KB
testcase_01 AC 307 ms
57,820 KB
testcase_02 AC 305 ms
57,852 KB
testcase_03 AC 306 ms
57,872 KB
testcase_04 AC 307 ms
57,672 KB
testcase_05 AC 304 ms
57,656 KB
testcase_06 AC 307 ms
57,648 KB
testcase_07 AC 306 ms
57,744 KB
testcase_08 AC 306 ms
57,852 KB
testcase_09 AC 305 ms
57,740 KB
testcase_10 AC 309 ms
57,772 KB
testcase_11 AC 306 ms
57,824 KB
testcase_12 AC 306 ms
57,876 KB
testcase_13 AC 309 ms
57,644 KB
testcase_14 AC 306 ms
57,916 KB
testcase_15 AC 307 ms
57,832 KB
testcase_16 AC 305 ms
57,820 KB
testcase_17 AC 311 ms
57,848 KB
testcase_18 AC 308 ms
57,844 KB
testcase_19 AC 310 ms
57,840 KB
testcase_20 AC 304 ms
57,652 KB
testcase_21 AC 309 ms
57,652 KB
testcase_22 AC 310 ms
57,752 KB
testcase_23 AC 304 ms
57,736 KB
testcase_24 AC 305 ms
57,656 KB
testcase_25 AC 303 ms
57,844 KB
testcase_26 AC 305 ms
57,836 KB
testcase_27 AC 309 ms
57,736 KB
testcase_28 AC 309 ms
57,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val C1: String = readLine()!!
    val C2: String = readLine()!!

    var C = mutableListOf<Char>()
    C.addAll(C1.toCharArray().toList())
    C.addAll(C2.toCharArray().toList())
    C.add('x')

    var count = 0
    var maxCount = 0
    for (i in 0 until C.size) {
        when (C[i]) {
            'o' -> count++
            'x' -> {
                if (maxCount < count) {
                    maxCount = count
                }
                count = 0
            }
        }
    }
    println(maxCount)
}
0