結果
問題 | No.1681 +-* |
ユーザー | Mik10 |
提出日時 | 2021-10-07 20:58:56 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 268 bytes |
コンパイル時間 | 497 ms |
コンパイル使用メモリ | 82,960 KB |
実行使用メモリ | 265,788 KB |
最終ジャッジ日時 | 2024-07-23 03:07:47 |
合計ジャッジ時間 | 4,873 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
60,972 KB |
testcase_01 | AC | 38 ms
52,880 KB |
testcase_02 | AC | 38 ms
52,656 KB |
testcase_03 | AC | 39 ms
53,264 KB |
testcase_04 | AC | 41 ms
55,552 KB |
testcase_05 | AC | 80 ms
100,512 KB |
testcase_06 | AC | 77 ms
99,504 KB |
testcase_07 | AC | 87 ms
105,284 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 | -- | - |
ソースコード
n = int(input()) seql = list(map(int, input().split())) import operator, itertools n -= 2 ans = 0 for p in itertools.accumulate(seql, func=operator.mul): if not p: break ans += pow(3, n, 10**9+7) * 2*p if n >= 0 else p n -= 1 print (ans%(10**9+7))