結果

問題 No.1325 Subsequence Score
ユーザー flippergoflippergo
提出日時 2020-12-31 00:07:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 210 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 154,016 KB
最終ジャッジ日時 2024-10-08 08:03:16
合計ジャッジ時間 4,294 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,184 KB
testcase_01 AC 34 ms
52,052 KB
testcase_02 AC 34 ms
52,676 KB
testcase_03 AC 40 ms
60,628 KB
testcase_04 AC 34 ms
53,092 KB
testcase_05 AC 40 ms
59,620 KB
testcase_06 AC 33 ms
52,688 KB
testcase_07 AC 39 ms
60,044 KB
testcase_08 AC 32 ms
52,400 KB
testcase_09 AC 33 ms
51,968 KB
testcase_10 AC 35 ms
53,788 KB
testcase_11 AC 32 ms
53,124 KB
testcase_12 AC 31 ms
52,944 KB
testcase_13 AC 140 ms
153,596 KB
testcase_14 AC 67 ms
93,360 KB
testcase_15 AC 121 ms
135,472 KB
testcase_16 AC 125 ms
144,860 KB
testcase_17 AC 89 ms
102,340 KB
testcase_18 AC 63 ms
90,192 KB
testcase_19 AC 140 ms
153,940 KB
testcase_20 AC 53 ms
75,848 KB
testcase_21 AC 76 ms
101,816 KB
testcase_22 AC 96 ms
103,868 KB
testcase_23 AC 139 ms
153,600 KB
testcase_24 AC 154 ms
154,016 KB
testcase_25 AC 138 ms
153,900 KB
testcase_26 AC 144 ms
153,840 KB
testcase_27 AC 136 ms
153,680 KB
testcase_28 WA -
testcase_29 AC 32 ms
52,344 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

p = 998244353
N = int(input())
A = list(map(int,input().split()))
A.insert(0,0)
a = 1
i = 0
while i<N-2:
    a = (a*2)%p
    i += 1
b = 0
for i in range(1,N+1):
    b = (b+(i+1)*A[i])%p
ans = (a*b)%p
print(ans)
0