結果

問題 No.312 置換処理
ユーザー 826814741_6826814741_6
提出日時 2019-01-09 23:55:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 12,260 ms
コンパイル使用メモリ 430,772 KB
実行使用メモリ 49,976 KB
最終ジャッジ日時 2024-11-15 12:26:06
合計ジャッジ時間 27,024 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
49,892 KB
testcase_01 AC 295 ms
49,832 KB
testcase_02 AC 297 ms
49,748 KB
testcase_03 AC 302 ms
49,736 KB
testcase_04 AC 288 ms
49,660 KB
testcase_05 AC 285 ms
49,552 KB
testcase_06 AC 282 ms
49,700 KB
testcase_07 AC 291 ms
49,800 KB
testcase_08 AC 286 ms
49,848 KB
testcase_09 AC 285 ms
49,608 KB
testcase_10 AC 283 ms
49,732 KB
testcase_11 AC 287 ms
49,812 KB
testcase_12 AC 281 ms
49,720 KB
testcase_13 AC 283 ms
49,976 KB
testcase_14 AC 285 ms
49,652 KB
testcase_15 AC 285 ms
49,612 KB
testcase_16 AC 285 ms
49,868 KB
testcase_17 AC 287 ms
49,712 KB
testcase_18 AC 286 ms
49,644 KB
testcase_19 AC 287 ms
49,880 KB
testcase_20 AC 283 ms
49,768 KB
testcase_21 AC 282 ms
49,856 KB
testcase_22 AC 284 ms
49,652 KB
testcase_23 AC 280 ms
49,752 KB
testcase_24 AC 281 ms
49,960 KB
testcase_25 AC 280 ms
49,608 KB
testcase_26 AC 282 ms
49,696 KB
testcase_27 AC 287 ms
49,652 KB
testcase_28 AC 281 ms
49,896 KB
testcase_29 AC 283 ms
49,876 KB
testcase_30 AC 292 ms
49,864 KB
testcase_31 AC 290 ms
49,768 KB
testcase_32 AC 289 ms
49,752 KB
testcase_33 AC 291 ms
49,832 KB
testcase_34 AC 293 ms
49,664 KB
testcase_35 AC 286 ms
49,852 KB
testcase_36 AC 288 ms
49,772 KB
testcase_37 AC 284 ms
49,668 KB
testcase_38 AC 284 ms
49,796 KB
testcase_39 AC 281 ms
49,848 KB
testcase_40 AC 281 ms
49,672 KB
testcase_41 AC 282 ms
49,760 KB
testcase_42 AC 281 ms
49,800 KB
testcase_43 AC 282 ms
49,784 KB
testcase_44 AC 279 ms
49,772 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:10:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import kotlin.math.*

fun g(n: Long): Long = floor(sqrt(n.toDouble())).toLong()

fun f(m: Long, n: Long): Long {
    for (i in 3..m) if (n%i==0L) return i
    return if (n!=4L&&n%2==0L) n/2 else n
}

fun main(args: Array<String>) {
    val n = readLine()!!.toLong()
    println(f(g(n),n))
}
0