結果

問題 No.1218 Something Like a Theorem
ユーザー rutilicusrutilicus
提出日時 2020-09-06 10:59:26
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 10,915 ms
コンパイル使用メモリ 443,296 KB
実行使用メモリ 57,208 KB
最終ジャッジ日時 2024-05-06 20:49:04
合計ジャッジ時間 17,231 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 288 ms
57,084 KB
testcase_01 AC 296 ms
57,072 KB
testcase_02 AC 285 ms
56,976 KB
testcase_03 AC 287 ms
57,136 KB
testcase_04 AC 290 ms
56,972 KB
testcase_05 AC 316 ms
56,900 KB
testcase_06 AC 295 ms
57,100 KB
testcase_07 AC 316 ms
57,108 KB
testcase_08 AC 314 ms
56,952 KB
testcase_09 AC 322 ms
56,916 KB
testcase_10 AC 339 ms
57,024 KB
testcase_11 AC 297 ms
57,092 KB
testcase_12 AC 283 ms
56,980 KB
testcase_13 AC 292 ms
57,100 KB
testcase_14 AC 290 ms
56,980 KB
testcase_15 AC 293 ms
57,208 KB
testcase_16 AC 300 ms
56,992 KB
testcase_17 AC 290 ms
57,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:27: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 #

fun main() {
    val builder = StringBuilder()

    val mod = 1000000007L

    val (n, z) = readInputLine().split(" ").map { it.toLong() }

    val zPow = pow(z, n, mod)

    for (x in LongRange(1L, 1000000L)) {
        val xPow = pow(x, n, mod)
        if (xPow > zPow) {
            break
        }
        for (y in LongRange(1L, 1000000L)) {
            val yPow = pow(y, n, mod)
            if (xPow + yPow > zPow) {
                break
            }
            if (xPow + yPow == zPow) {
                println("Yes")
                return
            }
        }
    }

    builder.appendln("No")

    print(builder.toString())
}

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

fun pow(x: Long, n: Long, mod: Long): Long {
    var ret = 1L
    var base = x
    var nTmp = n

    while (nTmp != 0L) {
        if (nTmp % 2L != 0L) {
            ret = ret * base % mod
        }
        base = base * base % mod
        nTmp /= 2L
    }

    return ret
}
0