結果

問題 No.430 文字列検索
ユーザー kondo_raion_Nokondo_raion_No
提出日時 2016-10-03 23:36:11
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,458 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 11,198 ms
コンパイル使用メモリ 438,696 KB
実行使用メモリ 62,916 KB
最終ジャッジ日時 2024-11-10 00:09:14
合計ジャッジ時間 27,548 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
51,208 KB
testcase_01 AC 1,314 ms
62,096 KB
testcase_02 AC 1,119 ms
62,320 KB
testcase_03 AC 989 ms
62,136 KB
testcase_04 AC 289 ms
51,340 KB
testcase_05 AC 288 ms
51,384 KB
testcase_06 AC 292 ms
51,316 KB
testcase_07 AC 290 ms
51,160 KB
testcase_08 AC 359 ms
51,828 KB
testcase_09 AC 308 ms
51,740 KB
testcase_10 AC 349 ms
51,720 KB
testcase_11 AC 1,376 ms
62,184 KB
testcase_12 AC 1,355 ms
62,164 KB
testcase_13 AC 1,355 ms
62,240 KB
testcase_14 AC 1,346 ms
62,136 KB
testcase_15 AC 1,343 ms
62,720 KB
testcase_16 AC 1,458 ms
62,916 KB
testcase_17 AC 1,317 ms
62,876 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.*
import java.util.regex.Pattern

fun main(args: Array<String>) {

    val scanner = Scanner(System.`in`)
    val s = scanner.next()
    val m = scanner.nextInt()
    val C = ArrayList<String>()
    for (i in 0..m - 1) C.add(scanner.next())
    scanner.close()

    var sum = 0
    for (pattern in C) {
        sum += matchNumber(Pattern.compile(pattern), s)
    }
    println(sum)
}

fun matchNumber(pattern: Pattern, target: String): Int {
    val m = pattern.matcher(target)
    var count = 0
    if (m.find()) {
        count += 1
        while (m.find(m.start() + 1)) count += 1
    }
    return count
}
0