結果

問題 No.1237 EXP Multiple!
ユーザー zeronosu77108zeronosu77108
提出日時 2021-02-10 18:43:39
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 462 bytes
コンパイル時間 13,089 ms
コンパイル使用メモリ 435,124 KB
実行使用メモリ 81,352 KB
最終ジャッジ日時 2024-07-08 05:25:15
合計ジャッジ時間 23,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
51,740 KB
testcase_01 AC 543 ms
73,872 KB
testcase_02 AC 554 ms
79,260 KB
testcase_03 AC 564 ms
79,684 KB
testcase_04 AC 570 ms
81,352 KB
testcase_05 RE -
testcase_06 AC 510 ms
68,840 KB
testcase_07 RE -
testcase_08 AC 555 ms
78,144 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 513 ms
69,044 KB
testcase_12 AC 510 ms
68,912 KB
testcase_13 AC 535 ms
70,340 KB
testcase_14 AC 527 ms
70,108 KB
testcase_15 AC 535 ms
70,340 KB
testcase_16 AC 548 ms
70,356 KB
testcase_17 AC 546 ms
70,144 KB
testcase_18 AC 539 ms
70,248 KB
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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
    }

    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