結果
問題 | No.1237 EXP Multiple! |
ユーザー | rlangevin |
提出日時 | 2023-01-02 14:34:50 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 241 bytes |
コンパイル時間 | 326 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 124,148 KB |
最終ジャッジ日時 | 2024-05-05 06:19:35 |
合計ジャッジ時間 | 5,428 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
58,528 KB |
testcase_01 | AC | 72 ms
92,800 KB |
testcase_02 | AC | 85 ms
107,984 KB |
testcase_03 | AC | 89 ms
101,800 KB |
testcase_04 | AC | 90 ms
102,648 KB |
testcase_05 | WA | - |
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 | -- | - |
ソースコード
N = int(input()) A = list(map(int, input().split())) if 0 in A: print(0) elif max(A) >= 4: print(10 ** 9 + 7) else: ans = 1 fact = [1, 1, 2, 6, 24] for a in A: ans *= pow(a, fact[a]) print((10 ** 9 + 7) % ans)