結果

問題 No.996 Phnom Penh
ユーザー firiexpfiriexp
提出日時 2020-02-22 00:29:33
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 1,642 bytes
コンパイル時間 17,434 ms
コンパイル使用メモリ 454,292 KB
実行使用メモリ 74,712 KB
最終ジャッジ日時 2024-10-09 05:13:05
合計ジャッジ時間 28,926 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
51,844 KB
testcase_01 AC 328 ms
51,960 KB
testcase_02 AC 329 ms
51,940 KB
testcase_03 AC 331 ms
52,156 KB
testcase_04 AC 326 ms
52,180 KB
testcase_05 AC 336 ms
52,264 KB
testcase_06 AC 327 ms
51,864 KB
testcase_07 AC 331 ms
52,136 KB
testcase_08 AC 332 ms
52,200 KB
testcase_09 AC 338 ms
52,228 KB
testcase_10 AC 325 ms
52,220 KB
testcase_11 AC 335 ms
52,044 KB
testcase_12 AC 337 ms
52,332 KB
testcase_13 AC 555 ms
71,924 KB
testcase_14 AC 549 ms
72,256 KB
testcase_15 AC 550 ms
72,344 KB
testcase_16 AC 552 ms
72,008 KB
testcase_17 AC 556 ms
72,188 KB
testcase_18 AC 335 ms
51,956 KB
testcase_19 AC 329 ms
51,948 KB
testcase_20 AC 332 ms
51,688 KB
testcase_21 AC 331 ms
51,976 KB
testcase_22 AC 325 ms
51,956 KB
testcase_23 AC 334 ms
52,224 KB
testcase_24 AC 582 ms
74,712 KB
testcase_25 AC 571 ms
73,596 KB
testcase_26 AC 560 ms
72,044 KB
testcase_27 AC 556 ms
72,532 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:31:9: warning: variable 'v' is never used
    var v = 0
        ^
Main.kt:49:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.io.PrintWriter
import java.lang.Math.abs
import java.util.*

@JvmField val INPUT = System.`in`
@JvmField val OUTPUT = System.out
@JvmField val cin = INPUT.bufferedReader()
fun readLine(): String? = cin.readLine()
fun readLn() = cin.readLine()!!
@JvmField var _tokenizer: StringTokenizer = StringTokenizer("")
fun read(): String {
    while (_tokenizer.hasMoreTokens().not()) _tokenizer = StringTokenizer(cin.readLine() ?: return "", " ")
    return _tokenizer.nextToken()
}
fun readInt() = read().toInt()
fun readDouble() = read().toDouble()
fun readLong() = read().toLong()
fun readStrings(n: Int) = List(n) { read() }
fun readLines(n: Int) = List(n) { readLn() }
fun readInts(n: Int) = List(n) { read().toInt() }
fun readIntArray(n: Int) = IntArray(n) { read().toInt() }
fun readDoubles(n: Int) = List(n) { read().toDouble() }
fun readDoubleArray(n: Int) = DoubleArray(n) { read().toDouble() }
fun readLongs(n: Int) = List(n) { read().toLong() }
fun readLongArray(n: Int) = LongArray(n) { read().toLong() }
@JvmField val cout = PrintWriter(OUTPUT, false)

fun solve(){
    var s = read()
    var ans = 0
    var v = 0
    for (i in 1..2){
        for (j in 0 until s.length-4){
            if(s.substring(j, j+5) == "phnom") ans++
        }
        s = s.replace("phnom", "penh")
        if(s.contains("[he]".toRegex())){
            ans++
            s = s.replace("h", "").replace('e', 'h')
        }
    }
    for (c in "phn(om)+".toRegex().findAll(s)) {
        ans += c.value.length - 3
    }
    if(s.contains("[he]".toRegex())) ans++
    cout.println(ans)
}

fun main(args: Array<String>) {
    solve()
    cout.flush()
}
0