結果

問題 No.1700 floor X
ユーザー GatanityHouseGatanityHouse
提出日時 2021-10-17 01:10:21
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 202 bytes
コンパイル時間 8,884 ms
コンパイル使用メモリ 429,812 KB
実行使用メモリ 62,364 KB
最終ジャッジ日時 2024-09-17 19:33:31
合計ジャッジ時間 30,065 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 244 ms
54,228 KB
testcase_01 AC 438 ms
58,820 KB
testcase_02 AC 417 ms
58,960 KB
testcase_03 AC 428 ms
58,656 KB
testcase_04 AC 451 ms
58,824 KB
testcase_05 AC 453 ms
58,708 KB
testcase_06 AC 417 ms
59,040 KB
testcase_07 AC 416 ms
58,840 KB
testcase_08 AC 433 ms
58,880 KB
testcase_09 AC 435 ms
58,804 KB
testcase_10 AC 437 ms
58,932 KB
testcase_11 AC 416 ms
58,696 KB
testcase_12 AC 414 ms
58,716 KB
testcase_13 AC 414 ms
59,052 KB
testcase_14 AC 424 ms
58,820 KB
testcase_15 AC 440 ms
58,844 KB
testcase_16 AC 435 ms
58,884 KB
testcase_17 AC 418 ms
58,952 KB
testcase_18 AC 421 ms
58,892 KB
testcase_19 AC 417 ms
58,884 KB
testcase_20 AC 418 ms
58,960 KB
testcase_21 AC 456 ms
62,020 KB
testcase_22 AC 444 ms
62,144 KB
testcase_23 AC 453 ms
62,084 KB
testcase_24 AC 471 ms
62,152 KB
testcase_25 AC 454 ms
62,168 KB
testcase_26 AC 472 ms
62,140 KB
testcase_27 AC 468 ms
61,952 KB
testcase_28 AC 435 ms
61,944 KB
testcase_29 AC 464 ms
62,108 KB
testcase_30 AC 460 ms
62,200 KB
testcase_31 AC 451 ms
62,040 KB
testcase_32 AC 487 ms
62,076 KB
testcase_33 AC 477 ms
62,012 KB
testcase_34 AC 467 ms
62,144 KB
testcase_35 AC 477 ms
61,880 KB
testcase_36 AC 486 ms
62,000 KB
testcase_37 AC 453 ms
62,264 KB
testcase_38 AC 511 ms
62,112 KB
testcase_39 AC 480 ms
62,176 KB
testcase_40 AC 450 ms
62,364 KB
testcase_41 AC 435 ms
58,644 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:7:13: warning: name shadowed: t
        val t = readLine()!!.toDouble()
            ^

ソースコード

diff #

import kotlin.math.*

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

    repeat(t) {
        val t = readLine()!!.toDouble()
        val result = floor(sqrt(t)).toLong()
        println(result)
    }
}
0