結果

問題 No.1700 floor X
ユーザー 箱星箱星
提出日時 2021-10-08 22:38:24
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 912 bytes
コンパイル時間 13,224 ms
コンパイル使用メモリ 434,720 KB
実行使用メモリ 59,460 KB
最終ジャッジ日時 2024-07-23 05:41:14
合計ジャッジ時間 32,893 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
58,608 KB
testcase_01 AC 407 ms
59,180 KB
testcase_02 AC 392 ms
59,324 KB
testcase_03 AC 403 ms
59,192 KB
testcase_04 AC 412 ms
59,228 KB
testcase_05 AC 408 ms
59,204 KB
testcase_06 AC 395 ms
59,304 KB
testcase_07 AC 407 ms
59,188 KB
testcase_08 AC 420 ms
59,324 KB
testcase_09 AC 404 ms
59,268 KB
testcase_10 AC 393 ms
59,292 KB
testcase_11 AC 396 ms
59,368 KB
testcase_12 AC 402 ms
59,316 KB
testcase_13 AC 400 ms
59,052 KB
testcase_14 AC 395 ms
59,324 KB
testcase_15 AC 398 ms
59,460 KB
testcase_16 AC 405 ms
59,192 KB
testcase_17 AC 400 ms
59,360 KB
testcase_18 AC 397 ms
59,116 KB
testcase_19 AC 411 ms
59,224 KB
testcase_20 AC 429 ms
58,944 KB
testcase_21 AC 401 ms
59,220 KB
testcase_22 AC 406 ms
59,268 KB
testcase_23 AC 402 ms
59,240 KB
testcase_24 AC 419 ms
59,176 KB
testcase_25 AC 412 ms
59,168 KB
testcase_26 AC 424 ms
59,060 KB
testcase_27 AC 415 ms
59,260 KB
testcase_28 AC 418 ms
59,184 KB
testcase_29 AC 412 ms
59,172 KB
testcase_30 AC 415 ms
59,092 KB
testcase_31 AC 411 ms
59,188 KB
testcase_32 AC 405 ms
59,296 KB
testcase_33 AC 416 ms
59,084 KB
testcase_34 AC 411 ms
59,244 KB
testcase_35 AC 408 ms
59,056 KB
testcase_36 AC 410 ms
59,240 KB
testcase_37 AC 405 ms
59,244 KB
testcase_38 AC 417 ms
59,216 KB
testcase_39 AC 411 ms
59,252 KB
testcase_40 AC 420 ms
59,192 KB
testcase_41 AC 410 ms
59,172 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val numCases = nextInt()
    case@ for (_i in 0 until numCases) {
        val n = nextLong()
        println(sqrt(n.toDouble()).toLong())
    }
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", 1.shl(26))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0