結果

問題 No.25 有限小数
ユーザー バカらっくバカらっく
提出日時 2019-09-02 00:51:47
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 485 bytes
コンパイル時間 13,244 ms
コンパイル使用メモリ 437,524 KB
実行使用メモリ 60,524 KB
最終ジャッジ日時 2024-11-30 02:17:20
合計ジャッジ時間 25,173 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
49,728 KB
testcase_01 AC 293 ms
49,840 KB
testcase_02 AC 296 ms
49,720 KB
testcase_03 AC 293 ms
49,556 KB
testcase_04 AC 297 ms
49,616 KB
testcase_05 AC 293 ms
49,608 KB
testcase_06 AC 291 ms
49,596 KB
testcase_07 AC 293 ms
49,608 KB
testcase_08 AC 292 ms
49,544 KB
testcase_09 AC 290 ms
49,676 KB
testcase_10 AC 296 ms
49,536 KB
testcase_11 AC 301 ms
49,596 KB
testcase_12 AC 295 ms
49,656 KB
testcase_13 AC 305 ms
49,668 KB
testcase_14 AC 296 ms
49,552 KB
testcase_15 AC 292 ms
49,552 KB
testcase_16 AC 294 ms
49,500 KB
testcase_17 WA -
testcase_18 AC 295 ms
49,496 KB
testcase_19 RE -
testcase_20 AC 296 ms
49,568 KB
testcase_21 AC 295 ms
49,564 KB
testcase_22 AC 295 ms
49,624 KB
testcase_23 AC 295 ms
49,768 KB
testcase_24 AC 291 ms
49,580 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 293 ms
49,556 KB
testcase_30 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!.toLong()
    val m = readLine()!!.toLong()
    val ans = div(n, m)
    println(ans)
}

val dic = mutableMapOf<Long, Boolean>()

fun div(n:Long, m:Long): Int {
    dic[n]?.let { return -1 }
    dic[n] = true
    if(n < m) {
        return div(n*10, m)
    }
    var ans = n / m
    if(n % m > 0) {
        return div(n%m, m)
    }
    while (ans % 10 == 0.toLong()) {
        ans = ans / 10
    }
    return (ans % 10).toInt()
}
0