結果

問題 No.1224 I hate Sqrt Inequality
ユーザー rutilicusrutilicus
提出日時 2020-09-12 11:13:07
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 1,194 bytes
コンパイル時間 14,781 ms
コンパイル使用メモリ 443,344 KB
実行使用メモリ 88,448 KB
最終ジャッジ日時 2024-06-10 03:13:07
合計ジャッジ時間 16,559 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 266 ms
55,568 KB
testcase_01 AC 269 ms
88,448 KB
testcase_02 AC 279 ms
57,512 KB
testcase_03 AC 269 ms
51,980 KB
testcase_04 AC 267 ms
51,904 KB
testcase_05 AC 281 ms
51,876 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:53: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("No")
            ^

ソースコード

diff #

import kotlin.math.sqrt

fun main() {
    val builder = StringBuilder()

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

    val divisorsA = mutableMapOf<Long, Long>()
    val divisorsB = mutableMapOf<Long, Long>()

    var aTmp = a

    for (i in LongRange(2L, sqrt(a.toDouble()).toLong() + 1L)) {
        if (aTmp == 1L) {
            break
        }
        while (aTmp % i == 0L) {
            divisorsA[i] = (divisorsA[i] ?: 0L) + 1L
            aTmp /= i
        }
    }

    if (aTmp != 1L) {
        divisorsA[aTmp] = 1L
    }

    var bTmp = b

    for (i in LongRange(2L, sqrt(b.toDouble()).toLong() + 1L)) {
        if (bTmp == 1L) {
            break
        }
        while (bTmp % i == 0L) {
            divisorsB[i] = (divisorsB[i] ?: 0L) + 1L
            bTmp /= i
        }
    }

    if (bTmp != 1L) {
        divisorsB[bTmp] = 1L
    }

    for ((p, cnt) in divisorsB) {
        if (p == 2L || p == 5L) {
            continue
        }
        if (cnt > (divisorsA[p] ?: 0L)) {
            println("Yes")
            return
        }
    }

    builder.appendln("No")

    print(builder.toString())
}

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