結果

問題 No.1325 Subsequence Score
ユーザー hiro1729hiro1729
提出日時 2023-09-10 16:03:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 170 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 172,868 KB
最終ジャッジ日時 2024-06-28 07:10:23
合計ジャッジ時間 5,254 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,612 KB
testcase_01 AC 39 ms
53,364 KB
testcase_02 AC 40 ms
52,760 KB
testcase_03 AC 48 ms
58,556 KB
testcase_04 AC 39 ms
52,580 KB
testcase_05 AC 44 ms
59,884 KB
testcase_06 AC 39 ms
52,624 KB
testcase_07 AC 43 ms
59,244 KB
testcase_08 AC 39 ms
52,216 KB
testcase_09 AC 39 ms
51,960 KB
testcase_10 AC 38 ms
51,984 KB
testcase_11 AC 39 ms
53,620 KB
testcase_12 AC 39 ms
53,368 KB
testcase_13 AC 188 ms
171,892 KB
testcase_14 AC 77 ms
95,788 KB
testcase_15 AC 155 ms
148,060 KB
testcase_16 AC 172 ms
161,168 KB
testcase_17 AC 102 ms
102,028 KB
testcase_18 AC 71 ms
90,824 KB
testcase_19 AC 185 ms
172,332 KB
testcase_20 AC 58 ms
76,260 KB
testcase_21 AC 88 ms
103,100 KB
testcase_22 AC 105 ms
103,676 KB
testcase_23 AC 184 ms
172,528 KB
testcase_24 AC 183 ms
172,252 KB
testcase_25 AC 182 ms
172,448 KB
testcase_26 AC 186 ms
172,316 KB
testcase_27 AC 185 ms
172,868 KB
testcase_28 AC 38 ms
52,120 KB
testcase_29 AC 38 ms
52,452 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
if n == 1:
	exit(print(a[0]))
mod = 998244353
print(pow(2, n - 2, mod) * sum((i + 2) * a[i] for i in range(n)) % mod)
0