結果

問題 No.1218 Something Like a Theorem
ユーザー rutilicusrutilicus
提出日時 2020-09-06 10:56:17
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 970 bytes
コンパイル時間 11,244 ms
コンパイル使用メモリ 434,280 KB
実行使用メモリ 57,328 KB
最終ジャッジ日時 2024-05-06 20:47:30
合計ジャッジ時間 19,156 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
56,988 KB
testcase_01 AC 292 ms
56,992 KB
testcase_02 AC 291 ms
57,172 KB
testcase_03 AC 293 ms
57,108 KB
testcase_04 AC 293 ms
57,000 KB
testcase_05 TLE -
testcase_06 AC 285 ms
57,092 KB
testcase_07 AC 305 ms
57,328 KB
testcase_08 AC 309 ms
57,204 KB
testcase_09 AC 331 ms
57,112 KB
testcase_10 AC 304 ms
57,092 KB
testcase_11 AC 286 ms
57,260 KB
testcase_12 AC 284 ms
57,112 KB
testcase_13 AC 288 ms
57,008 KB
testcase_14 AC 291 ms
57,080 KB
testcase_15 AC 284 ms
57,120 KB
testcase_16 AC 283 ms
57,072 KB
testcase_17 AC 285 ms
57,088 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