結果

問題 No.1681 +-*
ユーザー 👑 KazunKazun
提出日時 2021-09-17 22:22:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 103,424 KB
最終ジャッジ日時 2024-06-29 21:00:07
合計ジャッジ時間 3,030 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 39 ms
52,736 KB
testcase_05 AC 89 ms
103,040 KB
testcase_06 AC 86 ms
103,212 KB
testcase_07 AC 85 ms
103,424 KB
testcase_08 WA -
testcase_09 AC 106 ms
102,048 KB
testcase_10 AC 104 ms
102,248 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 70 ms
85,632 KB
testcase_14 AC 104 ms
102,124 KB
testcase_15 AC 38 ms
51,712 KB
testcase_16 AC 37 ms
51,712 KB
testcase_17 AC 102 ms
102,128 KB
testcase_18 AC 104 ms
101,988 KB
testcase_19 AC 103 ms
102,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#==================================================
N=int(input())
A=[-1]+list(map(int,input().split()))

Mod=10**9+7
THREE=[1]*(N+1)
for i in range(1,N+1):
    THREE[i]=(3*THREE[i-1])%Mod

X=0
alpha=1
for i in range(1,N+1):
    alpha*=A[i]; alpha%=Mod

    if i==N:
        X+=alpha
    else:
        X+=alpha*THREE[N-1-i]*2
        X%=Mod

print(X)
0