結果

問題 No.1700 floor X
ユーザー GatanityHouseGatanityHouse
提出日時 2021-10-17 01:10:21
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 202 bytes
コンパイル時間 11,504 ms
コンパイル使用メモリ 425,712 KB
実行使用メモリ 60,224 KB
最終ジャッジ日時 2023-10-17 22:19:25
合計ジャッジ時間 36,556 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
51,776 KB
testcase_01 AC 507 ms
56,404 KB
testcase_02 AC 498 ms
56,404 KB
testcase_03 AC 507 ms
56,404 KB
testcase_04 AC 507 ms
56,404 KB
testcase_05 AC 516 ms
56,400 KB
testcase_06 AC 520 ms
56,412 KB
testcase_07 AC 508 ms
56,392 KB
testcase_08 AC 495 ms
56,408 KB
testcase_09 AC 503 ms
56,404 KB
testcase_10 AC 495 ms
56,400 KB
testcase_11 AC 499 ms
56,408 KB
testcase_12 AC 491 ms
56,404 KB
testcase_13 AC 501 ms
56,400 KB
testcase_14 AC 502 ms
56,420 KB
testcase_15 AC 496 ms
56,404 KB
testcase_16 AC 503 ms
56,412 KB
testcase_17 AC 496 ms
56,408 KB
testcase_18 AC 512 ms
56,412 KB
testcase_19 AC 504 ms
56,396 KB
testcase_20 AC 509 ms
56,408 KB
testcase_21 AC 549 ms
60,204 KB
testcase_22 AC 551 ms
60,208 KB
testcase_23 AC 552 ms
60,212 KB
testcase_24 AC 562 ms
60,168 KB
testcase_25 AC 553 ms
60,180 KB
testcase_26 AC 551 ms
60,204 KB
testcase_27 AC 552 ms
60,176 KB
testcase_28 AC 544 ms
60,212 KB
testcase_29 AC 555 ms
60,056 KB
testcase_30 AC 545 ms
60,208 KB
testcase_31 AC 547 ms
60,176 KB
testcase_32 AC 553 ms
60,180 KB
testcase_33 AC 543 ms
60,224 KB
testcase_34 AC 551 ms
60,196 KB
testcase_35 AC 546 ms
60,176 KB
testcase_36 AC 561 ms
60,200 KB
testcase_37 AC 553 ms
60,208 KB
testcase_38 AC 553 ms
60,200 KB
testcase_39 AC 551 ms
60,196 KB
testcase_40 AC 545 ms
60,204 KB
testcase_41 AC 501 ms
58,156 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