結果

問題 No.1700 floor X
ユーザー 箱星箱星
提出日時 2021-10-08 22:40:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 1,122 bytes
コンパイル時間 11,757 ms
コンパイル使用メモリ 440,704 KB
実行使用メモリ 66,408 KB
最終ジャッジ日時 2024-07-03 10:35:37
合計ジャッジ時間 31,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
58,412 KB
testcase_01 AC 414 ms
64,720 KB
testcase_02 AC 415 ms
65,044 KB
testcase_03 AC 414 ms
64,864 KB
testcase_04 AC 412 ms
64,624 KB
testcase_05 AC 426 ms
65,632 KB
testcase_06 AC 419 ms
65,000 KB
testcase_07 AC 416 ms
64,872 KB
testcase_08 AC 413 ms
66,220 KB
testcase_09 AC 413 ms
65,136 KB
testcase_10 AC 415 ms
65,156 KB
testcase_11 AC 422 ms
64,908 KB
testcase_12 AC 420 ms
66,092 KB
testcase_13 AC 421 ms
66,140 KB
testcase_14 AC 423 ms
66,408 KB
testcase_15 AC 416 ms
64,596 KB
testcase_16 AC 413 ms
64,696 KB
testcase_17 AC 414 ms
64,824 KB
testcase_18 AC 409 ms
64,932 KB
testcase_19 AC 417 ms
64,864 KB
testcase_20 AC 410 ms
64,964 KB
testcase_21 AC 413 ms
63,428 KB
testcase_22 AC 421 ms
63,532 KB
testcase_23 AC 407 ms
63,376 KB
testcase_24 AC 409 ms
63,140 KB
testcase_25 AC 416 ms
63,528 KB
testcase_26 AC 417 ms
63,684 KB
testcase_27 AC 418 ms
63,408 KB
testcase_28 AC 427 ms
63,656 KB
testcase_29 AC 426 ms
63,188 KB
testcase_30 AC 417 ms
63,580 KB
testcase_31 AC 418 ms
63,624 KB
testcase_32 AC 421 ms
63,468 KB
testcase_33 AC 423 ms
63,676 KB
testcase_34 AC 418 ms
63,396 KB
testcase_35 AC 421 ms
63,468 KB
testcase_36 AC 422 ms
63,544 KB
testcase_37 AC 434 ms
63,468 KB
testcase_38 AC 421 ms
63,392 KB
testcase_39 AC 412 ms
63,428 KB
testcase_40 AC 417 ms
63,544 KB
testcase_41 AC 421 ms
63,540 KB
testcase_42 AC 269 ms
58,664 KB
testcase_43 AC 412 ms
63,524 KB
testcase_44 AC 415 ms
63,632 KB
権限があれば一括ダウンロードができます

ソースコード

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()
        var l = 0L
        var r = 1000000001L
        while (r - l > 1) {
            val mid = (l + r) / 2
            if (mid * mid <= n) {
                l = mid
            } else {
                r = mid
            }
        }
        println(l)
    }
}

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