結果

問題 No.1237 EXP Multiple!
ユーザー tamatotamato
提出日時 2020-09-25 21:30:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 104,448 KB
最終ジャッジ日時 2024-06-28 08:30:32
合計ジャッジ時間 2,650 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 71 ms
91,392 KB
testcase_02 AC 85 ms
104,448 KB
testcase_03 AC 94 ms
99,840 KB
testcase_04 AC 100 ms
100,096 KB
testcase_05 AC 73 ms
95,744 KB
testcase_06 AC 73 ms
95,232 KB
testcase_07 AC 72 ms
95,232 KB
testcase_08 AC 75 ms
96,256 KB
testcase_09 AC 72 ms
95,616 KB
testcase_10 AC 73 ms
95,360 KB
testcase_11 AC 73 ms
95,616 KB
testcase_12 AC 75 ms
96,000 KB
testcase_13 AC 76 ms
96,384 KB
testcase_14 AC 76 ms
96,000 KB
testcase_15 AC 76 ms
96,128 KB
testcase_16 AC 76 ms
96,128 KB
testcase_17 AC 76 ms
96,128 KB
testcase_18 AC 75 ms
96,128 KB
testcase_19 AC 74 ms
95,616 KB
権限があれば一括ダウンロードができます

ソースコード

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