結果

問題 No.1218 Something Like a Theorem
ユーザー rutilicusrutilicus
提出日時 2020-09-06 10:59:26
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 13,042 ms
コンパイル使用メモリ 451,364 KB
実行使用メモリ 57,136 KB
最終ジャッジ日時 2024-11-29 06:53:41
合計ジャッジ時間 19,590 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
57,036 KB
testcase_01 AC 321 ms
56,832 KB
testcase_02 AC 325 ms
57,136 KB
testcase_03 AC 330 ms
57,044 KB
testcase_04 AC 324 ms
56,896 KB
testcase_05 AC 359 ms
56,860 KB
testcase_06 AC 323 ms
56,984 KB
testcase_07 AC 347 ms
56,908 KB
testcase_08 AC 355 ms
56,924 KB
testcase_09 AC 369 ms
57,016 KB
testcase_10 AC 343 ms
57,068 KB
testcase_11 AC 324 ms
57,108 KB
testcase_12 AC 322 ms
56,912 KB
testcase_13 AC 326 ms
57,068 KB
testcase_14 AC 326 ms
56,984 KB
testcase_15 AC 326 ms
56,992 KB
testcase_16 AC 328 ms
56,992 KB
testcase_17 AC 323 ms
56,976 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