結果

問題 No.1237 EXP Multiple!
ユーザー 箱星箱星
提出日時 2020-09-25 21:37:14
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 1,119 bytes
コンパイル時間 14,497 ms
コンパイル使用メモリ 437,876 KB
実行使用メモリ 79,276 KB
最終ジャッジ日時 2024-06-28 06:13:27
合計ジャッジ時間 22,786 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
53,000 KB
testcase_01 AC 471 ms
69,660 KB
testcase_02 AC 492 ms
74,128 KB
testcase_03 AC 498 ms
74,424 KB
testcase_04 AC 525 ms
79,276 KB
testcase_05 AC 454 ms
65,416 KB
testcase_06 AC 473 ms
65,388 KB
testcase_07 AC 432 ms
65,240 KB
testcase_08 AC 466 ms
65,564 KB
testcase_09 AC 436 ms
65,388 KB
testcase_10 AC 438 ms
65,508 KB
testcase_11 RE -
testcase_12 AC 481 ms
65,460 KB
testcase_13 AC 461 ms
65,328 KB
testcase_14 AC 459 ms
65,292 KB
testcase_15 AC 461 ms
65,344 KB
testcase_16 AC 461 ms
65,384 KB
testcase_17 AC 455 ms
65,552 KB
testcase_18 AC 465 ms
65,464 KB
testcase_19 AC 455 ms
65,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.io.PrintWriter
import java.util.*

fun PrintWriter.solve(sc: FastScanner) {
    val n = sc.nextInt()
    val a = Array(n) { sc.nextInt() }
    val M = 1000000007
    if (a.contains(0)) {
        println(-1)
    } else if (a.any { it >= 4 }) {
        println(M)
    } else {
        var v = 1L
        for (i in 0 until n) {
            if (a[i] == 2) v *= 4
            else if (a[i] == 3) v *= 729
        }
        println(M % v)
    }
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve(FastScanner(System.`in`))
    writer.flush()
}

class FastScanner(s: InputStream) {
    private var st = StringTokenizer("")
    private val br = BufferedReader(InputStreamReader(s))

    fun next(): String {
        while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())

        return st.nextToken()
    }

    fun nextInt() = next().toInt()
    fun nextLong() = next().toLong()
    fun nextLine() = br.readLine()
    fun nextDouble() = next().toDouble()
    fun ready() = br.ready()
}
0