結果
問題 | No.1237 EXP Multiple! |
ユーザー | FromBooska |
提出日時 | 2023-09-12 15:37:23 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 644 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 82,400 KB |
実行使用メモリ | 110,696 KB |
最終ジャッジ日時 | 2024-06-30 03:33:13 |
合計ジャッジ時間 | 6,177 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
59,124 KB |
testcase_01 | AC | 95 ms
95,352 KB |
testcase_02 | AC | 121 ms
107,404 KB |
testcase_03 | AC | 130 ms
101,852 KB |
testcase_04 | AC | 98 ms
102,016 KB |
testcase_05 | RE | - |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
# オイラーの小定理とかではない # 問題文よく読むと、mod 10**9+7を計算式で割る、いつもの逆 # ということは計算式がmodを超えたら答えは常にmod # 実験するとすぐわかるがaが4以上でmodを超える from math import factorial mod = 10**9+7 N = int(input()) A = list(map(int, input().split())) A.sort() denominator = 1 ans_flag = False for i in range(N): if A[i]<=3: calc = pow(A[i], factorial(A[i])) denominator *= calc else: ans_flag = True break if ans_flag == True: print(mod) else: ans = mod%denominator print(ans)