結果

問題 No.1237 EXP Multiple!
ユーザー i_takui_taku
提出日時 2024-06-07 13:28:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 106,368 KB
最終ジャッジ日時 2024-06-07 13:29:02
合計ジャッジ時間 2,646 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 72 ms
92,416 KB
testcase_02 AC 116 ms
106,368 KB
testcase_03 AC 93 ms
101,752 KB
testcase_04 AC 95 ms
102,260 KB
testcase_05 AC 69 ms
95,488 KB
testcase_06 AC 70 ms
95,616 KB
testcase_07 AC 73 ms
95,488 KB
testcase_08 AC 72 ms
97,408 KB
testcase_09 AC 71 ms
95,616 KB
testcase_10 AC 72 ms
95,872 KB
testcase_11 AC 72 ms
95,872 KB
testcase_12 AC 76 ms
96,896 KB
testcase_13 AC 74 ms
96,512 KB
testcase_14 AC 74 ms
96,896 KB
testcase_15 AC 83 ms
97,280 KB
testcase_16 AC 75 ms
97,024 KB
testcase_17 AC 74 ms
96,768 KB
testcase_18 AC 72 ms
96,640 KB
testcase_19 AC 71 ms
95,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
if 0 in A:
    print(-1)
    exit()
M = 10**9 + 7
f = lambda x: 1 if x == 1 else x * f(x - 1)
ans = 1
for a in A:
    if a > 3:
        print(M)
        exit()
    ans *= a**f(a)
    if ans > M:
        print(M)
        exit()
print(M % ans)
0