結果

問題 No.345 最小チワワ問題
ユーザー minokasagominokasago
提出日時 2019-11-01 10:16:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 10,842 ms
コンパイル使用メモリ 434,116 KB
実行使用メモリ 50,888 KB
最終ジャッジ日時 2024-09-14 22:33:33
合計ジャッジ時間 23,049 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
50,888 KB
testcase_01 AC 297 ms
50,708 KB
testcase_02 AC 295 ms
50,604 KB
testcase_03 AC 300 ms
50,696 KB
testcase_04 AC 295 ms
50,620 KB
testcase_05 AC 300 ms
50,808 KB
testcase_06 AC 299 ms
50,832 KB
testcase_07 AC 307 ms
50,608 KB
testcase_08 AC 296 ms
50,812 KB
testcase_09 AC 299 ms
50,748 KB
testcase_10 AC 297 ms
50,736 KB
testcase_11 AC 298 ms
50,804 KB
testcase_12 AC 297 ms
50,780 KB
testcase_13 AC 302 ms
50,804 KB
testcase_14 AC 297 ms
50,816 KB
testcase_15 AC 297 ms
50,800 KB
testcase_16 AC 299 ms
50,676 KB
testcase_17 AC 299 ms
50,600 KB
testcase_18 AC 297 ms
50,780 KB
testcase_19 AC 295 ms
50,880 KB
testcase_20 AC 295 ms
50,664 KB
testcase_21 AC 294 ms
50,748 KB
testcase_22 AC 302 ms
50,660 KB
testcase_23 AC 299 ms
50,836 KB
testcase_24 AC 296 ms
50,612 KB
testcase_25 AC 299 ms
50,652 KB
testcase_26 AC 300 ms
50,836 KB
testcase_27 AC 299 ms
50,604 KB
testcase_28 AC 301 ms
50,680 KB
testcase_29 AC 299 ms
50,652 KB
testcase_30 AC 299 ms
50,868 KB
testcase_31 AC 297 ms
50,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main()
{
    val S = readLine()!!

    var ans = -1

    var pc = 0
    while (pc < S.length) {
        pc = S.indexOf('c', pc);
        if (pc == -1) break;
        var pw = S.indexOf('w', pc + 1)
        if (pw != -1) {
            var pww = S.indexOf('w', pw + 1)
            if (pww != -1) {
                var l = pww - pc + 1
                if (ans == -1 || l < ans) {
                    ans = l
                }
            }
        }
        pc++
    }


    println("${ans}")
}

0