結果

問題 No.1224 I hate Sqrt Inequality
ユーザー rutilicusrutilicus
提出日時 2020-09-19 21:10:55
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 1,290 bytes
コンパイル時間 14,301 ms
コンパイル使用メモリ 455,560 KB
実行使用メモリ 57,104 KB
最終ジャッジ日時 2024-06-23 18:42:07
合計ジャッジ時間 19,962 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
57,072 KB
testcase_01 AC 307 ms
56,864 KB
testcase_02 AC 305 ms
57,004 KB
testcase_03 AC 306 ms
56,916 KB
testcase_04 AC 311 ms
56,952 KB
testcase_05 AC 310 ms
56,836 KB
testcase_06 AC 306 ms
57,104 KB
testcase_07 AC 314 ms
56,984 KB
testcase_08 AC 310 ms
56,836 KB
testcase_09 AC 307 ms
56,988 KB
testcase_10 AC 310 ms
57,080 KB
testcase_11 AC 309 ms
56,996 KB
testcase_12 AC 303 ms
56,928 KB
testcase_13 AC 306 ms
56,820 KB
testcase_14 AC 321 ms
56,996 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:42:13: warning: 'appendln(String?): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(if (denominator != 1L) "Yes" else "No")
            ^

ソースコード

diff #

import kotlin.math.abs

data class Rational(val numerator: Long, val denominator: Long) {
    // 有理数クラス
    // 分子numerator, 分母denominator
    companion object Factory {
        private tailrec fun gcd(a: Long, b: Long): Long =
            when {
                b > a -> gcd(b, a)
                b == 0L -> a
                else -> gcd(b, a % b)
            }

        // 常に分子が正となるようなファクトリ
        fun create(numerator: Long, denominator: Long): Rational {
            val gcd = gcd(abs(numerator), abs(denominator))
            return if (numerator < 0) {
                Rational(numerator * -1L / gcd, denominator * -1L / gcd)
            } else {
                Rational(numerator / gcd, denominator / gcd)
            }
        }
    }
}

fun main() {
    val builder = StringBuilder()

    val (a, b) = readInputLine().split(" ").map { it.toLong() }

    val rational = Rational.create(a, b)

    var denominator = rational.denominator

    while (denominator % 2L == 0L) {
        denominator /= 2L
    }
    while (denominator % 5L == 0L) {
        denominator /= 5L
    }

    builder.appendln(if (denominator != 1L) "Yes" else "No")

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0