結果

問題 No.1237 EXP Multiple!
ユーザー daikisuyamadaikisuyama
提出日時 2020-09-26 11:10:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 107,780 KB
最終ジャッジ日時 2024-06-28 21:12:37
合計ジャッジ時間 2,373 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 64 ms
92,288 KB
testcase_02 AC 76 ms
107,780 KB
testcase_03 AC 82 ms
101,788 KB
testcase_04 AC 83 ms
102,156 KB
testcase_05 AC 70 ms
96,528 KB
testcase_06 AC 67 ms
97,184 KB
testcase_07 AC 63 ms
96,200 KB
testcase_08 AC 68 ms
98,560 KB
testcase_09 AC 64 ms
96,076 KB
testcase_10 AC 63 ms
96,384 KB
testcase_11 AC 64 ms
96,472 KB
testcase_12 AC 67 ms
95,872 KB
testcase_13 AC 67 ms
98,240 KB
testcase_14 AC 67 ms
98,000 KB
testcase_15 AC 66 ms
97,828 KB
testcase_16 AC 67 ms
97,684 KB
testcase_17 AC 68 ms
98,232 KB
testcase_18 AC 65 ms
98,168 KB
testcase_19 AC 63 ms
96,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
#ギャグ
mod=10**9+7
if max(a)>3:
    print(mod)
    exit()
if min(a)==0:
    print(-1)
    exit()
ans=1
for i in a:
    sub=1
    for j in range(i):
        sub*=(j+1)
    ans*=(i**sub)
    if ans>10**9+7:
        print(mod)
        exit()
print(mod%ans)
0