結果

問題 No.1220 yukipoker
ユーザー rutilicusrutilicus
提出日時 2020-09-06 11:57:27
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 724 ms / 2,000 ms
コード長 623 bytes
コンパイル時間 13,623 ms
コンパイル使用メモリ 437,148 KB
実行使用メモリ 90,688 KB
最終ジャッジ日時 2024-11-29 07:00:35
合計ジャッジ時間 27,184 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 333 ms
56,992 KB
testcase_01 AC 334 ms
57,140 KB
testcase_02 AC 325 ms
57,044 KB
testcase_03 AC 324 ms
57,028 KB
testcase_04 AC 328 ms
56,824 KB
testcase_05 AC 328 ms
57,008 KB
testcase_06 AC 327 ms
57,072 KB
testcase_07 AC 330 ms
56,888 KB
testcase_08 AC 325 ms
56,956 KB
testcase_09 AC 321 ms
56,932 KB
testcase_10 AC 330 ms
56,992 KB
testcase_11 AC 601 ms
78,260 KB
testcase_12 AC 628 ms
80,228 KB
testcase_13 AC 704 ms
90,568 KB
testcase_14 AC 724 ms
90,580 KB
testcase_15 AC 647 ms
84,432 KB
testcase_16 AC 681 ms
90,600 KB
testcase_17 AC 608 ms
76,312 KB
testcase_18 AC 628 ms
80,040 KB
testcase_19 AC 714 ms
90,688 KB
testcase_20 AC 709 ms
90,620 KB
testcase_21 AC 343 ms
56,972 KB
testcase_22 AC 341 ms
57,112 KB
testcase_23 AC 344 ms
57,016 KB
testcase_24 AC 339 ms
57,020 KB
testcase_25 AC 337 ms
56,916 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