結果

問題 No.1218 Something Like a Theorem
ユーザー rutilicusrutilicus
提出日時 2020-09-06 10:48:22
言語 Kotlin
(2.1.0)
結果
WA  
実行時間 -
コード長 723 bytes
コンパイル時間 13,970 ms
コンパイル使用メモリ 433,620 KB
実行使用メモリ 51,840 KB
最終ジャッジ日時 2024-11-29 06:49:00
合計ジャッジ時間 21,331 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 325 ms
51,596 KB
testcase_01 AC 337 ms
51,828 KB
testcase_02 AC 327 ms
51,836 KB
testcase_03 AC 328 ms
51,764 KB
testcase_04 AC 321 ms
51,664 KB
testcase_05 WA -
testcase_06 AC 323 ms
51,600 KB
testcase_07 AC 322 ms
51,840 KB
testcase_08 AC 326 ms
51,668 KB
testcase_09 AC 334 ms
51,768 KB
testcase_10 AC 330 ms
51,652 KB
testcase_11 WA -
testcase_12 AC 330 ms
51,716 KB
testcase_13 AC 322 ms
51,792 KB
testcase_14 AC 321 ms
51,636 KB
testcase_15 WA -
testcase_16 AC 326 ms
51,584 KB
testcase_17 AC 322 ms
51,568 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