結果

問題 No.1464 Number Conversion
ユーザー face4face4
提出日時 2021-04-07 20:29:36
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 12,931 ms
コンパイル使用メモリ 426,076 KB
実行使用メモリ 57,708 KB
最終ジャッジ日時 2024-06-23 00:56:14
合計ジャッジ時間 23,980 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
57,356 KB
testcase_01 AC 354 ms
57,556 KB
testcase_02 AC 357 ms
57,548 KB
testcase_03 AC 356 ms
57,416 KB
testcase_04 AC 356 ms
57,436 KB
testcase_05 AC 356 ms
57,320 KB
testcase_06 AC 359 ms
57,480 KB
testcase_07 AC 356 ms
57,568 KB
testcase_08 AC 358 ms
57,536 KB
testcase_09 AC 356 ms
57,352 KB
testcase_10 AC 360 ms
57,552 KB
testcase_11 AC 348 ms
57,664 KB
testcase_12 AC 359 ms
57,680 KB
testcase_13 AC 363 ms
57,544 KB
testcase_14 AC 358 ms
57,368 KB
testcase_15 AC 356 ms
57,364 KB
testcase_16 AC 358 ms
57,488 KB
testcase_17 AC 356 ms
57,684 KB
testcase_18 AC 354 ms
57,548 KB
testcase_19 AC 355 ms
57,544 KB
testcase_20 AC 353 ms
57,568 KB
testcase_21 AC 359 ms
57,544 KB
testcase_22 AC 360 ms
57,516 KB
testcase_23 AC 362 ms
57,372 KB
testcase_24 AC 361 ms
57,576 KB
testcase_25 AC 361 ms
57,708 KB
testcase_26 AC 361 ms
57,548 KB
testcase_27 AC 357 ms
57,700 KB
testcase_28 AC 356 ms
57,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun gcd(a: Long, b: Long) : Long{
    return if(b == 0L) a else gcd(b, a%b)
}

fun power(n: Int) : Long{
    var ret = 1L
    repeat(n){
        ret *= 10
    }
    return ret
}

fun main(){
    val x = readLine()!!
    var s = x.replace(".","").toLong()
    var b = if(x.contains(".")) power(x.length-x.indexOf('.')-1) else 1
    val p = gcd(s, b)
    s /= p
    b /= p
    println("%d/%d".format(s, b))
}
0