結果

問題 No.996 Phnom Penh
ユーザー Respect2DRespect2D
提出日時 2020-02-21 21:54:48
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 461 bytes
コンパイル時間 13,901 ms
コンパイル使用メモリ 438,312 KB
実行使用メモリ 88,612 KB
最終ジャッジ日時 2024-10-08 21:39:23
合計ジャッジ時間 28,375 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 376 ms
55,628 KB
testcase_01 AC 386 ms
88,612 KB
testcase_02 AC 373 ms
52,496 KB
testcase_03 AC 385 ms
52,512 KB
testcase_04 AC 369 ms
52,500 KB
testcase_05 AC 378 ms
52,404 KB
testcase_06 AC 365 ms
52,544 KB
testcase_07 AC 371 ms
52,396 KB
testcase_08 AC 382 ms
52,196 KB
testcase_09 AC 379 ms
52,664 KB
testcase_10 AC 375 ms
52,300 KB
testcase_11 AC 381 ms
52,396 KB
testcase_12 AC 375 ms
52,236 KB
testcase_13 AC 608 ms
55,960 KB
testcase_14 AC 594 ms
56,028 KB
testcase_15 AC 549 ms
56,236 KB
testcase_16 AC 532 ms
56,168 KB
testcase_17 AC 531 ms
55,996 KB
testcase_18 AC 372 ms
52,284 KB
testcase_19 AC 419 ms
52,212 KB
testcase_20 AC 417 ms
52,256 KB
testcase_21 AC 391 ms
52,344 KB
testcase_22 WA -
testcase_23 AC 368 ms
52,284 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.*

fun main(args: Array<String>) {
    val sc = Scanner(System.`in`)
    var s = sc.next()
    var ans = 0
    while (true) {
        var preLen = s.length
        s = s.replace("phnom", "penh")
        val replaceCount = preLen - s.length
        ans += replaceCount

        preLen = s.length
        s = s.replace("h", "").replace("e", "h")
        if (s.length == preLen) {
            break
        }
        ans++
    }
    println(ans)
}
0