結果

問題 No.1237 EXP Multiple!
ユーザー ntudantuda
提出日時 2022-03-13 22:26:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 106,220 KB
最終ジャッジ日時 2024-09-19 06:04:21
合計ジャッジ時間 3,030 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,568 KB
testcase_01 AC 67 ms
93,100 KB
testcase_02 AC 78 ms
106,220 KB
testcase_03 AC 89 ms
101,772 KB
testcase_04 AC 88 ms
102,044 KB
testcase_05 AC 65 ms
96,124 KB
testcase_06 AC 66 ms
95,812 KB
testcase_07 AC 65 ms
96,720 KB
testcase_08 AC 71 ms
98,692 KB
testcase_09 AC 67 ms
96,056 KB
testcase_10 AC 66 ms
97,360 KB
testcase_11 AC 68 ms
97,524 KB
testcase_12 AC 71 ms
97,216 KB
testcase_13 AC 70 ms
97,592 KB
testcase_14 AC 71 ms
98,028 KB
testcase_15 AC 69 ms
97,884 KB
testcase_16 AC 70 ms
97,424 KB
testcase_17 AC 69 ms
98,496 KB
testcase_18 AC 69 ms
97,496 KB
testcase_19 AC 64 ms
96,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
N = int(input())
A = list(map(int,input().split()))
f = [1,1,2,6]

if 0 in A:
    print(-1)
    exit()
ans = 1
for i in range(N):
    if A[i] > 3:
        print(MOD)
        exit()
    ans *= A[i] ** f[A[i]]
    if ans > MOD:
        print(MOD)
        exit()
print(MOD%ans)
0