結果

問題 No.1237 EXP Multiple!
ユーザー KudeKude
提出日時 2020-09-25 22:48:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 105,472 KB
最終ジャッジ日時 2024-06-28 08:37:41
合計ジャッジ時間 2,752 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 80 ms
91,776 KB
testcase_02 AC 93 ms
105,472 KB
testcase_03 AC 106 ms
101,632 KB
testcase_04 AC 108 ms
102,272 KB
testcase_05 AC 80 ms
94,976 KB
testcase_06 AC 80 ms
94,976 KB
testcase_07 AC 81 ms
95,104 KB
testcase_08 AC 85 ms
96,640 KB
testcase_09 AC 80 ms
95,232 KB
testcase_10 AC 80 ms
95,232 KB
testcase_11 AC 80 ms
95,360 KB
testcase_12 AC 85 ms
97,152 KB
testcase_13 AC 85 ms
96,768 KB
testcase_14 AC 86 ms
96,896 KB
testcase_15 AC 85 ms
96,640 KB
testcase_16 AC 84 ms
97,024 KB
testcase_17 AC 85 ms
96,768 KB
testcase_18 AC 85 ms
96,896 KB
testcase_19 AC 80 ms
94,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P = 10 ** 9 + 7
n = int(input())
a = list(map(int, input().split()))
if 0 in a:
    print(-1)
    exit()
now = 1
for x in a:
    x0 = x
    t = 1
    while x:
        t *= x
        if t > P:
            print(P)
            exit()
        x -= 1
    while t:
        now *= x0
        if now > P:
            print(P)
            exit()
        t -= 1
print(P % now)
0