結果

問題 No.1218 Something Like a Theorem
ユーザー rutilicusrutilicus
提出日時 2020-09-06 10:50:40
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 790 bytes
コンパイル時間 13,886 ms
コンパイル使用メモリ 428,712 KB
実行使用メモリ 57,008 KB
最終ジャッジ日時 2024-05-06 20:47:10
合計ジャッジ時間 18,101 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
56,840 KB
testcase_01 AC 280 ms
56,948 KB
testcase_02 AC 288 ms
56,836 KB
testcase_03 AC 282 ms
56,952 KB
testcase_04 AC 289 ms
56,984 KB
testcase_05 WA -
testcase_06 AC 285 ms
56,972 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 281 ms
56,868 KB
testcase_12 AC 278 ms
56,912 KB
testcase_13 AC 284 ms
56,952 KB
testcase_14 AC 279 ms
56,948 KB
testcase_15 AC 283 ms
56,976 KB
testcase_16 AC 280 ms
56,872 KB
testcase_17 AC 288 ms
56,836 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