結果

問題 No.136 Yet Another GCD Problem
ユーザー バカらっくバカらっく
提出日時 2019-10-03 16:10:51
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 602 bytes
コンパイル時間 12,298 ms
コンパイル使用メモリ 441,448 KB
実行使用メモリ 60,524 KB
最終ジャッジ日時 2024-10-03 06:29:36
合計ジャッジ時間 26,372 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
55,400 KB
testcase_01 AC 274 ms
51,632 KB
testcase_02 AC 303 ms
55,284 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 307 ms
55,204 KB
testcase_09 AC 284 ms
51,676 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 278 ms
51,936 KB
testcase_24 WA -
testcase_25 AC 287 ms
51,552 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 310 ms
55,408 KB
testcase_32 WA -
testcase_33 AC 279 ms
51,892 KB
testcase_34 AC 297 ms
55,112 KB
testcase_35 AC 283 ms
51,884 KB
testcase_36 AC 275 ms
51,728 KB
testcase_37 AC 303 ms
55,188 KB
testcase_38 AC 280 ms
51,884 KB
testcase_39 AC 295 ms
55,196 KB
testcase_40 AC 289 ms
51,796 KB
testcase_41 AC 284 ms
51,968 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
    val (n, k) = readLine()!!.split(" ").map { it.toLong() }
    if(k >= n) {
        println(1)
        return
    }
    if(k == 1L) {
        println(n)
        return
    }

    val maxIndex = Math.sqrt(n.toDouble()).toLong()
    var ans = 0L
    for(i in (1..maxIndex)) {
        if(n % i != 0L) {
            continue
        }
        val num = (n/i).let { listOf(it, n / it) }.sortedDescending()
        for(j in num) {
            val tmp = n / j
            if(tmp >= k) {
                ans = Math.max(ans, j)
            }
        }
    }
    println(ans)
}

0