結果

問題 No.1237 EXP Multiple!
ユーザー i_takui_taku
提出日時 2024-06-07 13:28:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 306 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 106,028 KB
最終ジャッジ日時 2024-06-07 13:28:09
合計ジャッジ時間 2,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,272 KB
testcase_01 AC 70 ms
92,956 KB
testcase_02 AC 80 ms
106,028 KB
testcase_03 AC 91 ms
101,996 KB
testcase_04 AC 92 ms
102,276 KB
testcase_05 WA -
testcase_06 AC 68 ms
96,184 KB
testcase_07 WA -
testcase_08 AC 71 ms
97,908 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 67 ms
96,256 KB
testcase_12 AC 72 ms
98,368 KB
testcase_13 AC 71 ms
98,708 KB
testcase_14 AC 70 ms
98,076 KB
testcase_15 AC 71 ms
97,284 KB
testcase_16 AC 71 ms
99,240 KB
testcase_17 AC 70 ms
98,296 KB
testcase_18 AC 71 ms
99,188 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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