結果

問題 No.1218 Something Like a Theorem
ユーザー rutilicusrutilicus
提出日時 2020-09-06 10:56:17
言語 Kotlin
(2.1.0)
結果
TLE  
実行時間 -
コード長 970 bytes
コンパイル時間 12,563 ms
コンパイル使用メモリ 435,792 KB
実行使用メモリ 114,028 KB
最終ジャッジ日時 2024-11-29 06:51:56
合計ジャッジ時間 22,341 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
60,292 KB
testcase_01 AC 324 ms
94,936 KB
testcase_02 AC 321 ms
63,856 KB
testcase_03 AC 322 ms
57,064 KB
testcase_04 AC 317 ms
56,988 KB
testcase_05 TLE -
testcase_06 AC 329 ms
57,076 KB
testcase_07 AC 347 ms
57,048 KB
testcase_08 AC 350 ms
56,976 KB
testcase_09 AC 365 ms
57,012 KB
testcase_10 AC 341 ms
56,988 KB
testcase_11 AC 321 ms
56,872 KB
testcase_12 AC 324 ms
57,000 KB
testcase_13 AC 322 ms
56,856 KB
testcase_14 AC 318 ms
57,064 KB
testcase_15 AC 323 ms
56,948 KB
testcase_16 AC 323 ms
57,136 KB
testcase_17 AC 326 ms
114,028 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, 10000L)) {
        val xPow = pow(x, n, mod)
        if (xPow > zPow) {
            break
        }
        for (y in LongRange(1L, 10000L)) {
            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