結果

問題 No.136 Yet Another GCD Problem
ユーザー バカらっくバカらっく
提出日時 2019-10-03 16:13:57
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 602 bytes
コンパイル時間 13,646 ms
コンパイル使用メモリ 435,776 KB
実行使用メモリ 60,444 KB
最終ジャッジ日時 2024-10-03 06:30:11
合計ジャッジ時間 24,451 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
60,300 KB
testcase_01 AC 278 ms
56,916 KB
testcase_02 AC 296 ms
60,232 KB
testcase_03 AC 302 ms
60,200 KB
testcase_04 AC 309 ms
60,148 KB
testcase_05 WA -
testcase_06 AC 301 ms
60,308 KB
testcase_07 WA -
testcase_08 AC 291 ms
60,320 KB
testcase_09 AC 281 ms
56,924 KB
testcase_10 AC 293 ms
60,224 KB
testcase_11 AC 294 ms
60,296 KB
testcase_12 WA -
testcase_13 AC 302 ms
60,276 KB
testcase_14 AC 298 ms
60,132 KB
testcase_15 AC 297 ms
60,136 KB
testcase_16 AC 302 ms
60,304 KB
testcase_17 AC 296 ms
60,204 KB
testcase_18 WA -
testcase_19 AC 297 ms
60,252 KB
testcase_20 AC 296 ms
60,268 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 304 ms
56,792 KB
testcase_24 WA -
testcase_25 AC 276 ms
56,840 KB
testcase_26 AC 308 ms
60,376 KB
testcase_27 AC 299 ms
60,260 KB
testcase_28 AC 295 ms
60,196 KB
testcase_29 AC 312 ms
60,332 KB
testcase_30 WA -
testcase_31 AC 300 ms
60,300 KB
testcase_32 AC 301 ms
60,444 KB
testcase_33 AC 296 ms
56,820 KB
testcase_34 AC 320 ms
60,188 KB
testcase_35 AC 295 ms
56,864 KB
testcase_36 AC 289 ms
56,764 KB
testcase_37 AC 297 ms
60,192 KB
testcase_38 AC 286 ms
56,824 KB
testcase_39 AC 292 ms
60,188 KB
testcase_40 AC 281 ms
56,908 KB
testcase_41 AC 281 ms
56,904 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 = 1L
    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(2 <= tmp) {
                ans = Math.max(ans, j)
            }
        }
    }
    println(ans)
}

0