結果

問題 No.1700 floor X
ユーザー GatanityHouseGatanityHouse
提出日時 2021-10-17 01:23:16
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,003 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 10,562 ms
コンパイル使用メモリ 429,440 KB
実行使用メモリ 88,916 KB
最終ジャッジ日時 2024-07-03 10:45:08
合計ジャッジ時間 49,340 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 280 ms
50,140 KB
testcase_01 AC 862 ms
88,028 KB
testcase_02 AC 863 ms
87,896 KB
testcase_03 AC 828 ms
87,548 KB
testcase_04 AC 833 ms
88,140 KB
testcase_05 AC 868 ms
88,216 KB
testcase_06 AC 893 ms
87,992 KB
testcase_07 AC 847 ms
87,744 KB
testcase_08 AC 881 ms
88,052 KB
testcase_09 AC 853 ms
87,928 KB
testcase_10 AC 855 ms
87,432 KB
testcase_11 AC 896 ms
88,160 KB
testcase_12 AC 889 ms
88,212 KB
testcase_13 AC 854 ms
88,080 KB
testcase_14 AC 904 ms
88,788 KB
testcase_15 AC 865 ms
88,800 KB
testcase_16 AC 882 ms
88,292 KB
testcase_17 AC 900 ms
88,136 KB
testcase_18 AC 871 ms
88,144 KB
testcase_19 AC 916 ms
88,048 KB
testcase_20 AC 938 ms
87,756 KB
testcase_21 AC 915 ms
88,328 KB
testcase_22 AC 895 ms
87,788 KB
testcase_23 AC 861 ms
87,844 KB
testcase_24 AC 890 ms
88,916 KB
testcase_25 AC 848 ms
88,608 KB
testcase_26 AC 901 ms
88,020 KB
testcase_27 AC 844 ms
87,612 KB
testcase_28 AC 912 ms
88,832 KB
testcase_29 AC 884 ms
87,712 KB
testcase_30 AC 924 ms
88,364 KB
testcase_31 AC 883 ms
88,476 KB
testcase_32 AC 937 ms
88,444 KB
testcase_33 AC 866 ms
88,152 KB
testcase_34 AC 893 ms
87,624 KB
testcase_35 AC 881 ms
87,440 KB
testcase_36 AC 886 ms
88,036 KB
testcase_37 AC 854 ms
87,716 KB
testcase_38 AC 938 ms
88,452 KB
testcase_39 AC 875 ms
88,488 KB
testcase_40 AC 942 ms
88,284 KB
testcase_41 AC 588 ms
62,548 KB
testcase_42 AC 282 ms
50,048 KB
testcase_43 AC 936 ms
87,708 KB
testcase_44 AC 1,003 ms
87,632 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:8:13: warning: name shadowed: t
        val t = readLine()!!.toBigDecimal()
            ^

ソースコード

diff #

import java.math.MathContext
import java.math.RoundingMode

fun main() {
    val t = readLine()!!.toInt()

    repeat(t) {
        val t = readLine()!!.toBigDecimal()
        val sqrt = t.sqrt(MathContext.DECIMAL128)
        val result = sqrt.setScale(0, RoundingMode.FLOOR).toBigInteger()
        println(result)
    }
}
0