結果

問題 No.1237 EXP Multiple!
ユーザー Kiri8128Kiri8128
提出日時 2020-09-25 22:21:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,556 KB
最終ジャッジ日時 2024-06-28 08:35:15
合計ジャッジ時間 3,196 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 93 ms
26,004 KB
testcase_02 AC 117 ms
31,680 KB
testcase_03 AC 120 ms
32,396 KB
testcase_04 AC 122 ms
32,556 KB
testcase_05 AC 86 ms
13,764 KB
testcase_06 AC 88 ms
13,888 KB
testcase_07 AC 88 ms
13,764 KB
testcase_08 AC 132 ms
13,888 KB
testcase_09 AC 87 ms
13,768 KB
testcase_10 AC 89 ms
14,020 KB
testcase_11 AC 87 ms
14,020 KB
testcase_12 AC 120 ms
13,764 KB
testcase_13 AC 127 ms
13,892 KB
testcase_14 AC 131 ms
13,648 KB
testcase_15 AC 131 ms
13,760 KB
testcase_16 AC 126 ms
13,764 KB
testcase_17 AC 131 ms
13,892 KB
testcase_18 AC 132 ms
13,764 KB
testcase_19 AC 88 ms
13,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(a) for a in input().split()]
X = [0, 1, 4, 729]
P = 10 ** 9 + 7
if min(A) == 0:
    print(-1)
else:
    s = 1
    for a in A:
        if a > 3:
            print(P)
            break
        s *= X[a]
        if s > P:
            print(P)
            break
    else:
        print(P % s)
0