結果

問題 No.1237 EXP Multiple!
ユーザー buey_tbuey_t
提出日時 2023-03-27 11:10:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,778 ms / 2,000 ms
コード長 1,483 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 122,924 KB
最終ジャッジ日時 2024-09-19 10:10:05
合計ジャッジ時間 13,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
85,376 KB
testcase_01 AC 180 ms
112,512 KB
testcase_02 AC 191 ms
122,752 KB
testcase_03 AC 195 ms
122,924 KB
testcase_04 AC 170 ms
122,260 KB
testcase_05 AC 152 ms
117,120 KB
testcase_06 AC 154 ms
117,080 KB
testcase_07 AC 157 ms
117,588 KB
testcase_08 AC 150 ms
117,120 KB
testcase_09 AC 157 ms
117,064 KB
testcase_10 AC 164 ms
117,696 KB
testcase_11 AC 149 ms
117,120 KB
testcase_12 AC 151 ms
117,000 KB
testcase_13 AC 1,675 ms
117,544 KB
testcase_14 AC 1,678 ms
117,376 KB
testcase_15 AC 1,687 ms
117,504 KB
testcase_16 AC 1,701 ms
117,192 KB
testcase_17 AC 1,653 ms
117,376 KB
testcase_18 AC 1,778 ms
117,496 KB
testcase_19 AC 151 ms
116,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
    from heapq import heapify, heappop, heappush
    from bisect import bisect_left, bisect_right
    from copy import deepcopy
    import copy
    import random
    from collections import deque,Counter,defaultdict
    from itertools import permutations,combinations
    from decimal import Decimal,ROUND_HALF_UP
    #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
    from functools import lru_cache, reduce
    #@lru_cache(maxsize=None)
    from operator import add,sub,mul,xor,and_,or_,itemgetter
    INF = 10**18
    mod1 = 10**9+7
    mod2 = 998244353
    
    #DecimalならPython
    #再帰ならPython!!!!!!!!!!!!!!!!!!!!!!!!!!
    
    
    '''
    1 2 2 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4...
    10^9がえぐすぎるな
    草
    '''
    
    N = int(input())
    A = list(map(int, input().split()))
    
    A.sort(reverse=True)
    
    if A[0] >= 4:
        print(mod1)
    elif A[-1] == 0:
        print(-1)
    else:
        ans = 1
        for i in range(N):
            ans *= pow(A[i],factorial(A[i]))
            if ans > mod1:
                print(mod1)
                exit()
        print(mod1%ans)
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
if __name__ == '__main__':
    main()
0