結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー face4face4
提出日時 2021-04-11 15:01:54
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 12,643 ms
コンパイル使用メモリ 425,636 KB
実行使用メモリ 51,432 KB
最終ジャッジ日時 2024-06-27 10:05:02
合計ジャッジ時間 18,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
49,816 KB
testcase_01 AC 294 ms
49,760 KB
testcase_02 AC 292 ms
49,912 KB
testcase_03 AC 290 ms
49,668 KB
testcase_04 AC 292 ms
49,784 KB
testcase_05 AC 294 ms
49,960 KB
testcase_06 AC 293 ms
49,836 KB
testcase_07 AC 296 ms
49,672 KB
testcase_08 AC 292 ms
49,672 KB
testcase_09 AC 288 ms
50,040 KB
testcase_10 AC 293 ms
49,804 KB
testcase_11 AC 290 ms
49,864 KB
testcase_12 AC 289 ms
49,756 KB
testcase_13 AC 292 ms
51,432 KB
testcase_14 AC 294 ms
49,792 KB
testcase_15 AC 288 ms
49,600 KB
testcase_16 AC 289 ms
49,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.max
import kotlin.math.sqrt

fun main() {
    val n = readLine()!!.toInt()
    var maxsq = 1
    val sq : (Int) -> Int = {sqrt(it.toDouble()).toInt()}
    val isSq : (Int) -> Boolean = {sq(it)*sq(it)==it}
    for(i in 1..sqrt(n.toDouble()).toInt()){
        if(n%i != 0)    continue
        if(isSq(n/i)) maxsq = max(maxsq,n/i)
        else if(isSq(i))    maxsq = max(maxsq, i)
    }
    println("${sq(maxsq)} ${n/maxsq}")
}
0