結果
問題 | No.1237 EXP Multiple! |
ユーザー | buey_t |
提出日時 | 2023-03-27 11:09:14 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,444 bytes |
コンパイル時間 | 326 ms |
コンパイル使用メモリ | 82,312 KB |
実行使用メモリ | 123,008 KB |
最終ジャッジ日時 | 2024-09-19 10:09:49 |
合計ジャッジ時間 | 18,870 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
84,896 KB |
testcase_01 | AC | 189 ms
112,384 KB |
testcase_02 | AC | 207 ms
123,008 KB |
testcase_03 | AC | 204 ms
123,008 KB |
testcase_04 | AC | 165 ms
122,072 KB |
testcase_05 | RE | - |
testcase_06 | AC | 161 ms
116,864 KB |
testcase_07 | RE | - |
testcase_08 | AC | 151 ms
116,884 KB |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | AC | 153 ms
116,864 KB |
testcase_12 | AC | 163 ms
117,208 KB |
testcase_13 | AC | 1,654 ms
117,060 KB |
testcase_14 | AC | 1,703 ms
117,324 KB |
testcase_15 | AC | 1,689 ms
117,312 KB |
testcase_16 | AC | 1,654 ms
117,220 KB |
testcase_17 | AC | 1,681 ms
117,016 KB |
testcase_18 | AC | 1,649 ms
116,992 KB |
testcase_19 | WA | - |
ソースコード
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) 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()