結果

問題 No.1171 Runs in Subsequences
ユーザー yudedakoyudedako
提出日時 2020-08-28 16:09:39
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 15,879 ms
コンパイル使用メモリ 434,388 KB
実行使用メモリ 59,332 KB
最終ジャッジ日時 2024-11-13 23:20:25
合計ジャッジ時間 20,441 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
56,552 KB
testcase_01 AC 301 ms
56,684 KB
testcase_02 AC 302 ms
56,780 KB
testcase_03 AC 299 ms
56,808 KB
testcase_04 AC 300 ms
56,560 KB
testcase_05 AC 302 ms
56,768 KB
testcase_06 AC 303 ms
56,812 KB
testcase_07 AC 308 ms
56,684 KB
testcase_08 AC 305 ms
56,816 KB
testcase_09 AC 305 ms
56,692 KB
testcase_10 AC 313 ms
56,712 KB
testcase_11 AC 307 ms
56,840 KB
testcase_12 AC 315 ms
56,808 KB
testcase_13 AC 309 ms
56,708 KB
testcase_14 AC 308 ms
56,880 KB
testcase_15 AC 433 ms
59,284 KB
testcase_16 AC 436 ms
59,332 KB
testcase_17 AC 428 ms
59,272 KB
testcase_18 AC 432 ms
59,284 KB
testcase_19 AC 447 ms
59,124 KB
testcase_20 AC 427 ms
59,196 KB
testcase_21 AC 432 ms
59,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val mod = 1000000007L
    val str = readLine()!!.trim()
    val patternEndWith = LongArray(26){0L}
    var allPattern = 1L
    var allCount = 0L
    for (c in str) {
        val increasePattern = allPattern - patternEndWith[c - 'a'] + mod
        patternEndWith[c - 'a'] = (patternEndWith[c - 'a'] + allPattern) % mod
        allPattern = (allPattern shl 1) % mod
        allCount = ((allCount shl 1) + increasePattern) % mod
    }
    println(allCount)
}
0