結果

問題 No.1237 EXP Multiple!
ユーザー FromBooskaFromBooska
提出日時 2023-09-12 15:51:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 801 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 107,732 KB
最終ジャッジ日時 2024-06-30 03:48:02
合計ジャッジ時間 21,194 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,344 KB
testcase_01 AC 81 ms
95,376 KB
testcase_02 AC 112 ms
107,732 KB
testcase_03 AC 114 ms
101,812 KB
testcase_04 AC 82 ms
101,872 KB
testcase_05 AC 1,505 ms
103,428 KB
testcase_06 AC 62 ms
97,076 KB
testcase_07 AC 1,516 ms
103,928 KB
testcase_08 AC 1,488 ms
103,008 KB
testcase_09 AC 1,507 ms
103,284 KB
testcase_10 AC 1,498 ms
103,852 KB
testcase_11 AC 68 ms
97,008 KB
testcase_12 AC 1,485 ms
103,424 KB
testcase_13 WA -
testcase_14 AC 1,480 ms
103,376 KB
testcase_15 AC 1,528 ms
103,212 KB
testcase_16 AC 1,501 ms
103,156 KB
testcase_17 AC 1,502 ms
103,352 KB
testcase_18 AC 1,465 ms
103,444 KB
testcase_19 AC 1,522 ms
103,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# オイラーの小定理とかではない
# 問題文よく読むと、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
        if denominator > mod:
            ans_flag = True
            break
    else:
        ans_flag = True
        break
if ans_flag == True:
    print(mod)
else:
    if denominator == 0 or denominator == 1:
        print(-1)
    else:
        ans = mod%denominator
        print(ans)
        

0