結果

問題 No.1237 EXP Multiple!
ユーザー zeronosu77108zeronosu77108
提出日時 2021-02-10 18:45:04
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 531 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 13,681 ms
コンパイル使用メモリ 439,304 KB
実行使用メモリ 81,288 KB
最終ジャッジ日時 2024-07-08 05:27:33
合計ジャッジ時間 20,696 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
51,976 KB
testcase_01 AC 485 ms
73,648 KB
testcase_02 AC 531 ms
79,160 KB
testcase_03 AC 500 ms
79,840 KB
testcase_04 AC 514 ms
81,288 KB
testcase_05 AC 459 ms
69,128 KB
testcase_06 AC 467 ms
68,912 KB
testcase_07 AC 471 ms
69,048 KB
testcase_08 AC 526 ms
78,288 KB
testcase_09 AC 471 ms
68,876 KB
testcase_10 AC 460 ms
69,056 KB
testcase_11 AC 458 ms
68,892 KB
testcase_12 AC 457 ms
68,736 KB
testcase_13 AC 476 ms
70,392 KB
testcase_14 AC 505 ms
70,200 KB
testcase_15 AC 495 ms
70,276 KB
testcase_16 AC 502 ms
70,184 KB
testcase_17 AC 479 ms
70,272 KB
testcase_18 AC 517 ms
70,412 KB
testcase_19 AC 454 ms
69,008 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:9: warning: variable 'n' is never used
    val n = readLine()!!.toInt()
        ^

ソースコード

diff #

fun main() {
    val n = readLine()!!.toInt()
    val a = readLine()!!.split(" ").map { it.toLong() }

    if (a.any { it >= 4 }) {
        println(1_000_000_007)
        return
    }

    if (a.any { it == 0L }) {
        println(-1)
        return
    }

    var pi = 1L
    for (ai in a) {
        val k = (1..ai).fold(1) { acc, x -> (acc * x).toInt() }
        for (i in 0 until k) {
            pi *= ai
            if (pi > 1_000_000_007) {
                println(1_000_000_007)
                return
            }

        }
    }

    println(1_000_000_007 % pi)
}
0