結果
問題 | No.1237 EXP Multiple! |
ユーザー | Shirotsume |
提出日時 | 2023-02-17 19:56:11 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 468 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 82,220 KB |
実行使用メモリ | 244,980 KB |
最終ジャッジ日時 | 2024-07-19 11:20:18 |
合計ジャッジ時間 | 4,980 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
58,880 KB |
testcase_01 | AC | 72 ms
93,952 KB |
testcase_02 | AC | 95 ms
98,944 KB |
testcase_03 | AC | 97 ms
99,712 KB |
testcase_04 | AC | 101 ms
100,680 KB |
testcase_05 | AC | 76 ms
98,176 KB |
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 | -- | - |
ソースコード
import sys from collections import deque, Counter input = lambda: sys.stdin.readline().rstrip() ii = lambda: int(input()) mi = lambda: map(int, input().split()) li = lambda: list(mi()) n = ii() a = li() ans = 1 p = [0, 1, 4, 729] for i in range(n): if a[i] > 4: print(10 ** 9 + 7) exit() else: ans *= p[a[i]] if ans > 10 ** 9 + 7: print(10 ** 9 + 7) if ans == 0: print(-1) else: print((10 ** 9 + 7) % ans)