結果

問題 No.345 最小チワワ問題
ユーザー noriocnorioc
提出日時 2016-02-27 08:58:05
言語 Scala(Beta)
(3.6.2)
結果
AC  
実行時間 986 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 10,650 ms
コンパイル使用メモリ 251,168 KB
実行使用メモリ 63,744 KB
最終ジャッジ日時 2024-06-11 13:32:16
合計ジャッジ時間 39,813 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 844 ms
63,652 KB
testcase_01 AC 821 ms
63,356 KB
testcase_02 AC 824 ms
63,340 KB
testcase_03 AC 835 ms
63,428 KB
testcase_04 AC 822 ms
63,512 KB
testcase_05 AC 821 ms
63,320 KB
testcase_06 AC 835 ms
63,504 KB
testcase_07 AC 832 ms
63,496 KB
testcase_08 AC 830 ms
63,460 KB
testcase_09 AC 821 ms
63,628 KB
testcase_10 AC 832 ms
63,604 KB
testcase_11 AC 831 ms
63,548 KB
testcase_12 AC 846 ms
63,464 KB
testcase_13 AC 832 ms
63,568 KB
testcase_14 AC 825 ms
63,744 KB
testcase_15 AC 830 ms
63,428 KB
testcase_16 AC 824 ms
63,564 KB
testcase_17 AC 830 ms
63,648 KB
testcase_18 AC 841 ms
63,404 KB
testcase_19 AC 823 ms
63,616 KB
testcase_20 AC 826 ms
63,552 KB
testcase_21 AC 850 ms
63,616 KB
testcase_22 AC 844 ms
63,572 KB
testcase_23 AC 824 ms
63,476 KB
testcase_24 AC 986 ms
63,524 KB
testcase_25 AC 843 ms
63,508 KB
testcase_26 AC 846 ms
63,356 KB
testcase_27 AC 836 ms
63,376 KB
testcase_28 AC 857 ms
63,524 KB
testcase_29 AC 832 ms
63,672 KB
testcase_30 AC 827 ms
63,452 KB
testcase_31 AC 824 ms
63,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math._

object Main {
  def main(args: Array[String]) = {
    val sc = new java.util.Scanner(System.in)
    val s = sc.next

    val reg = "c.*?w.*?w".r
    var ans = Integer.MAX_VALUE
    for (i <- 0 to s.length-1 if s(i) == 'c') {
      reg.findFirstIn(s.substring(i)) match {
        case Some(v) => ans = min(ans, v.length)
        case _ =>
      }
    }

    if (ans == Integer.MAX_VALUE)
      println(-1)
    else
      println(ans)
  }
}
0