結果

問題 No.1237 EXP Multiple!
ユーザー tamatotamato
提出日時 2020-09-25 21:29:02
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 652 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 104,960 KB
最終ジャッジ日時 2024-06-28 06:06:59
合計ジャッジ時間 3,012 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 77 ms
91,008 KB
testcase_02 AC 93 ms
104,192 KB
testcase_03 AC 106 ms
99,840 KB
testcase_04 AC 104 ms
100,096 KB
testcase_05 RE -
testcase_06 AC 83 ms
95,104 KB
testcase_07 RE -
testcase_08 AC 80 ms
96,512 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 78 ms
95,488 KB
testcase_12 AC 79 ms
96,512 KB
testcase_13 AC 79 ms
96,128 KB
testcase_14 AC 82 ms
96,384 KB
testcase_15 AC 82 ms
96,128 KB
testcase_16 AC 79 ms
96,000 KB
testcase_17 AC 79 ms
96,384 KB
testcase_18 AC 80 ms
96,000 KB
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    A = list(map(int, input().split()))
    if 0 in A:
        print(-1)
    else:
        f = 1
        B = []
        for i in range(1, 10**5):
            f *= i
            new = i ** f
            if new > mod:
                break
            B.append(new)
        ans = 1
        for a in A:
            if a > len(B):
                print(mod)
                exit()
            ans *= B[a-1]
            if ans > mod:
                print(mod)
                exit()
    print(mod % ans)


if __name__ == '__main__':
    main()
0