結果

問題 No.1218 Something Like a Theorem
ユーザー rutilicusrutilicus
提出日時 2020-09-06 10:50:40
言語 Kotlin
(2.1.0)
結果
WA  
実行時間 -
コード長 790 bytes
コンパイル時間 14,551 ms
コンパイル使用メモリ 436,432 KB
実行使用メモリ 55,628 KB
最終ジャッジ日時 2024-11-29 06:51:30
合計ジャッジ時間 21,447 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 350 ms
55,472 KB
testcase_01 AC 322 ms
55,268 KB
testcase_02 AC 323 ms
55,552 KB
testcase_03 AC 316 ms
55,400 KB
testcase_04 AC 321 ms
55,544 KB
testcase_05 WA -
testcase_06 AC 327 ms
55,392 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 321 ms
55,348 KB
testcase_12 AC 318 ms
55,552 KB
testcase_13 AC 315 ms
55,612 KB
testcase_14 AC 323 ms
55,400 KB
testcase_15 AC 325 ms
55,628 KB
testcase_16 AC 317 ms
55,400 KB
testcase_17 AC 321 ms
55,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

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

    var zTmp = 1
    repeat(n) {
        zTmp *= z
    }

    for (x in 1..100) {
        var xTmp = 1
        repeat(n) {
            xTmp *= x
            if (xTmp >= zTmp) {
                println("No")
                return
            }
        }
        for (y in 1..100) {
            var yTmp = 1
            repeat(n) {
                yTmp *= y
                if (xTmp + yTmp > zTmp) {
                    return@repeat
                }
            }
            if (xTmp + yTmp == zTmp) {
                println("Yes")
                return
            }
        }
    }

    print(builder.toString())
}

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