結果

問題 No.1218 Something Like a Theorem
ユーザー rutilicusrutilicus
提出日時 2020-09-06 10:48:22
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 723 bytes
コンパイル時間 10,740 ms
コンパイル使用メモリ 431,600 KB
実行使用メモリ 51,812 KB
最終ジャッジ日時 2024-05-06 20:44:43
合計ジャッジ時間 17,230 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
51,576 KB
testcase_01 AC 264 ms
51,536 KB
testcase_02 AC 262 ms
51,636 KB
testcase_03 AC 269 ms
51,488 KB
testcase_04 AC 273 ms
51,524 KB
testcase_05 WA -
testcase_06 AC 271 ms
51,584 KB
testcase_07 AC 271 ms
51,812 KB
testcase_08 AC 293 ms
51,536 KB
testcase_09 AC 282 ms
51,580 KB
testcase_10 AC 265 ms
51,708 KB
testcase_11 WA -
testcase_12 AC 274 ms
51,504 KB
testcase_13 AC 274 ms
51,664 KB
testcase_14 AC 263 ms
51,580 KB
testcase_15 WA -
testcase_16 AC 272 ms
51,600 KB
testcase_17 AC 261 ms
51,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

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

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

    print(builder.toString())
}

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