結果
問題 | No.1681 +-* |
ユーザー | first_vil |
提出日時 | 2021-11-18 16:58:08 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 253 bytes |
コンパイル時間 | 308 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 109,440 KB |
最終ジャッジ日時 | 2024-06-08 00:13:06 |
合計ジャッジ時間 | 4,883 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
57,856 KB |
testcase_01 | AC | 37 ms
51,840 KB |
testcase_02 | AC | 38 ms
52,864 KB |
testcase_03 | AC | 37 ms
53,072 KB |
testcase_04 | AC | 40 ms
54,400 KB |
testcase_05 | AC | 172 ms
103,808 KB |
testcase_06 | AC | 167 ms
103,552 KB |
testcase_07 | AC | 174 ms
103,424 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 sys input = sys.stdin.buffer.readline mod = int(1e9+7) n = int(input()) mul = 1 ans = 0 for i,a in enumerate(list(map(int,input().split()))): mul *= a if i == n-1: ans += mul else: ans += mul * 2 * pow(3,n-2-i,mod) ans %= mod print(ans)