結果
問題 | No.1681 +-* |
ユーザー | terasa |
提出日時 | 2022-06-07 12:41:05 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,006 bytes |
コンパイル時間 | 196 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 107,148 KB |
最終ジャッジ日時 | 2024-09-21 04:52:39 |
合計ジャッジ時間 | 5,094 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
60,032 KB |
testcase_01 | AC | 49 ms
54,400 KB |
testcase_02 | AC | 52 ms
55,168 KB |
testcase_03 | AC | 53 ms
55,168 KB |
testcase_04 | AC | 56 ms
56,320 KB |
testcase_05 | AC | 204 ms
104,320 KB |
testcase_06 | AC | 202 ms
104,704 KB |
testcase_07 | AC | 192 ms
104,448 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import sysimport pypyjitimport itertoolsimport heapqimport mathfrom collections import deque, defaultdictimport bisectinput = sys.stdin.readlinesys.setrecursionlimit(10 ** 6)pypyjit.set_param('max_unroll_recursion=-1')def index_lt(a, x):'return largest index s.t. A[i] < x or -1 if it does not exist'return bisect.bisect_left(a, x) - 1def index_le(a, x):'return largest index s.t. A[i] <= x or -1 if it does not exist'return bisect.bisect_right(a, x) - 1def index_gt(a, x):'return smallest index s.t. A[i] > x or len(a) if it does not exist'return bisect.bisect_right(a, x)def index_ge(a, x):'return smallest index s.t. A[i] >= x or len(a) if it does not exist'return bisect.bisect_left(a, x)N = int(input())A = list(map(int, input().split()))mod = 10 ** 9 + 7ans = 0prod = 1for i in range(N):prod *= A[i]if i == N - 1:ans += prodelse:ans += 2 * pow(3, N - 2 - i, mod) * prodans %= modprint(ans)