結果

問題 No.25 有限小数
ユーザー バカらっくバカらっく
提出日時 2019-09-02 00:51:47
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 485 bytes
コンパイル時間 10,499 ms
コンパイル使用メモリ 431,744 KB
実行使用メモリ 60,636 KB
最終ジャッジ日時 2024-05-07 10:28:18
合計ジャッジ時間 21,330 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 279 ms
54,232 KB
testcase_01 AC 281 ms
54,260 KB
testcase_02 AC 278 ms
54,276 KB
testcase_03 AC 291 ms
54,164 KB
testcase_04 AC 276 ms
54,280 KB
testcase_05 AC 280 ms
54,164 KB
testcase_06 AC 298 ms
54,228 KB
testcase_07 AC 281 ms
54,268 KB
testcase_08 AC 279 ms
54,196 KB
testcase_09 AC 279 ms
54,284 KB
testcase_10 AC 280 ms
54,104 KB
testcase_11 AC 281 ms
54,304 KB
testcase_12 AC 280 ms
54,308 KB
testcase_13 AC 275 ms
54,052 KB
testcase_14 AC 280 ms
54,348 KB
testcase_15 AC 278 ms
54,324 KB
testcase_16 AC 281 ms
54,352 KB
testcase_17 WA -
testcase_18 AC 283 ms
54,108 KB
testcase_19 RE -
testcase_20 AC 278 ms
49,652 KB
testcase_21 AC 278 ms
49,716 KB
testcase_22 AC 279 ms
49,792 KB
testcase_23 AC 282 ms
49,792 KB
testcase_24 AC 284 ms
49,576 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 279 ms
49,720 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