結果

問題 No.345 最小チワワ問題
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-02-27 17:19:50
言語 Scala(Beta)
(3.6.2)
結果
AC  
実行時間 783 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 10,105 ms
コンパイル使用メモリ 263,052 KB
実行使用メモリ 62,692 KB
最終ジャッジ日時 2024-06-29 13:08:12
合計ジャッジ時間 33,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main {

    def solve(s: String): Int = {
        val n = s.length
        var answer, w1, w2 = Int.MaxValue
        for (idx <- (n - 1) to 0 by -1) {
            if (s(idx) == 'w') {
                w2 = w1
                w1 = idx
            } else if (s(idx) == 'c' && w2 < Int.MaxValue) {
                answer = scala.math.min(answer, w2 - idx + 1)
            }
        }
        if (answer < Int.MaxValue) {
            return answer
        } else {
            return -1
        }
    }

    def main(args: Array[String]): Unit = {
        println(solve(scala.io.StdIn.readLine()))
    }

}
0