結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 65 ms
92,928 KB
testcase_02 AC 87 ms
107,456 KB
testcase_03 AC 87 ms
102,076 KB
testcase_04 AC 88 ms
101,896 KB
testcase_05 AC 68 ms
97,548 KB
testcase_06 AC 67 ms
97,444 KB
testcase_07 AC 68 ms
96,012 KB
testcase_08 AC 70 ms
98,348 KB
testcase_09 AC 65 ms
96,424 KB
testcase_10 AC 66 ms
96,996 KB
testcase_11 AC 68 ms
96,372 KB
testcase_12 AC 67 ms
96,632 KB
testcase_13 WA -
testcase_14 AC 70 ms
98,228 KB
testcase_15 AC 70 ms
98,156 KB
testcase_16 AC 70 ms
98,968 KB
testcase_17 AC 70 ms
98,232 KB
testcase_18 AC 71 ms
98,216 KB
testcase_19 AC 69 ms
96,760 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 if mod%ans!=0 else -1)
0