結果

問題 No.1230 Hall_and_me
ユーザー rutilicusrutilicus
提出日時 2020-09-19 21:34:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 14,043 ms
コンパイル使用メモリ 432,544 KB
実行使用メモリ 57,148 KB
最終ジャッジ日時 2024-06-23 19:09:36
合計ジャッジ時間 26,348 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 362 ms
57,016 KB
testcase_01 AC 309 ms
57,040 KB
testcase_02 AC 314 ms
57,052 KB
testcase_03 AC 317 ms
56,992 KB
testcase_04 AC 321 ms
56,916 KB
testcase_05 AC 314 ms
56,968 KB
testcase_06 AC 310 ms
56,876 KB
testcase_07 AC 314 ms
56,976 KB
testcase_08 AC 313 ms
56,964 KB
testcase_09 AC 316 ms
57,116 KB
testcase_10 AC 318 ms
56,876 KB
testcase_11 AC 315 ms
57,024 KB
testcase_12 AC 315 ms
56,980 KB
testcase_13 AC 313 ms
56,980 KB
testcase_14 AC 312 ms
57,056 KB
testcase_15 AC 315 ms
57,028 KB
testcase_16 AC 314 ms
57,052 KB
testcase_17 AC 315 ms
56,880 KB
testcase_18 AC 311 ms
57,008 KB
testcase_19 AC 315 ms
57,140 KB
testcase_20 AC 313 ms
57,044 KB
testcase_21 AC 321 ms
56,980 KB
testcase_22 AC 321 ms
56,988 KB
testcase_23 AC 314 ms
57,016 KB
testcase_24 AC 313 ms
57,060 KB
testcase_25 AC 313 ms
57,128 KB
testcase_26 AC 315 ms
57,008 KB
testcase_27 AC 316 ms
57,108 KB
testcase_28 AC 313 ms
57,100 KB
testcase_29 AC 314 ms
57,020 KB
testcase_30 AC 310 ms
57,044 KB
testcase_31 AC 312 ms
56,976 KB
testcase_32 AC 316 ms
57,044 KB
testcase_33 AC 313 ms
57,148 KB
testcase_34 AC 313 ms
56,876 KB
testcase_35 AC 311 ms
56,920 KB
testcase_36 AC 312 ms
57,144 KB
testcase_37 AC 311 ms
57,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:21:13: warning: 'appendln(Double): 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(ans)
            ^

ソースコード

diff #

import kotlin.math.max

fun main() {
    val builder = StringBuilder()

    // モンティホール問題らしい
    val (p, q, r) = readInputLine().split(" ").map { it.toDouble() }

    val base = p + q + r

    var ans = 0.0

    // なんか違う気がする
    ans = max(ans, p / base)
    ans = max(ans, (q + r) / base)
    ans = max(ans, q / base)
    ans = max(ans, (p + r) / base)
    ans = max(ans, r / base)
    ans = max(ans, (p + q) / base)

    builder.appendln(ans)

    print(builder.toString())
}

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