結果
問題 | No.1681 +-* |
ユーザー | asumo0729 |
提出日時 | 2021-09-17 21:57:44 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 695 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 82,160 KB |
実行使用メモリ | 267,504 KB |
最終ジャッジ日時 | 2024-06-29 20:23:28 |
合計ジャッジ時間 | 4,083 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
61,496 KB |
testcase_01 | AC | 41 ms
55,192 KB |
testcase_02 | AC | 39 ms
57,824 KB |
testcase_03 | AC | 39 ms
58,612 KB |
testcase_04 | AC | 67 ms
71,332 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
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 operator import itemgetter from collections import defaultdict, deque import heapq import bisect stdin=sys.stdin sys.setrecursionlimit(10 ** 8) ip=lambda: int(sp()) fp=lambda: float(sp()) lp=lambda:list(map(int,stdin.readline().split())) sp=lambda:stdin.readline().rstrip() Yp=lambda:print('Yes') Np=lambda:print('No') inf = 1 << 60 eps = 1e-9 sortkey = itemgetter(0) mod = 10 ** 9+ 7 ############################################################### N = ip() A = lp() ans = 0 ## a1 +- a2... now = 1 p = pow(3, N - 1, mod) q = pow(3, mod - 2, mod) for i in range(N - 1): now *= A[i] p *= q ans += now * 2 * p ans %= mod ans += now * A[-1] ans %= mod print(ans)