結果

問題 No.1220 yukipoker
ユーザー rutilicusrutilicus
提出日時 2020-09-06 11:57:27
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 623 ms / 2,000 ms
コード長 623 bytes
コンパイル時間 14,326 ms
コンパイル使用メモリ 448,884 KB
実行使用メモリ 85,296 KB
最終ジャッジ日時 2024-05-06 20:54:51
合計ジャッジ時間 23,195 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 277 ms
52,508 KB
testcase_01 AC 281 ms
52,612 KB
testcase_02 AC 282 ms
52,368 KB
testcase_03 AC 287 ms
52,532 KB
testcase_04 AC 288 ms
52,664 KB
testcase_05 AC 285 ms
52,472 KB
testcase_06 AC 276 ms
52,532 KB
testcase_07 AC 282 ms
52,604 KB
testcase_08 AC 273 ms
52,496 KB
testcase_09 AC 273 ms
52,360 KB
testcase_10 AC 287 ms
52,252 KB
testcase_11 AC 564 ms
72,456 KB
testcase_12 AC 552 ms
74,156 KB
testcase_13 AC 608 ms
85,268 KB
testcase_14 AC 616 ms
85,264 KB
testcase_15 AC 569 ms
78,956 KB
testcase_16 AC 601 ms
85,104 KB
testcase_17 AC 534 ms
70,732 KB
testcase_18 AC 547 ms
75,944 KB
testcase_19 AC 623 ms
85,296 KB
testcase_20 AC 619 ms
85,180 KB
testcase_21 AC 295 ms
52,500 KB
testcase_22 AC 283 ms
52,476 KB
testcase_23 AC 311 ms
52,724 KB
testcase_24 AC 324 ms
52,480 KB
testcase_25 AC 299 ms
52,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:20:17: warning: 'appendln(String?): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
        builder.appendln(if (sumLog[n] < sumLog[n - k + 1] + sumLog[k] + ln(m.toDouble()) * (k - 1).toDouble()) "Flush" else "Straight")
                ^

ソースコード

diff #

import kotlin.math.ln

fun main() {
    val builder = StringBuilder()

    // 何も分からんので解説を読む
    val maxN = 100000

    val sumLog = DoubleArray(maxN + 1)

    for (i in 1..maxN) {
        sumLog[i] = sumLog[i - 1] + ln(i.toDouble())
    }

    val q = readInputLine().toInt()

    repeat(q) {
        val (n, m, k) = readInputLine().split(" ").map { it.toInt() }

        builder.appendln(if (sumLog[n] < sumLog[n - k + 1] + sumLog[k] + ln(m.toDouble()) * (k - 1).toDouble()) "Flush" else "Straight")
    }

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0