結果

問題 No.1325 Subsequence Score
ユーザー AEnAEn
提出日時 2022-12-26 22:03:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 890 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 173,620 KB
最終ジャッジ日時 2024-11-21 08:21:06
合計ジャッジ時間 13,293 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,580 KB
testcase_01 AC 38 ms
53,716 KB
testcase_02 AC 38 ms
52,980 KB
testcase_03 AC 46 ms
60,488 KB
testcase_04 AC 40 ms
53,508 KB
testcase_05 AC 47 ms
62,284 KB
testcase_06 AC 38 ms
52,328 KB
testcase_07 AC 45 ms
60,472 KB
testcase_08 AC 37 ms
52,192 KB
testcase_09 AC 37 ms
52,156 KB
testcase_10 AC 38 ms
52,324 KB
testcase_11 AC 38 ms
52,608 KB
testcase_12 AC 40 ms
53,296 KB
testcase_13 AC 878 ms
172,176 KB
testcase_14 AC 263 ms
97,756 KB
testcase_15 AC 729 ms
148,696 KB
testcase_16 AC 829 ms
161,808 KB
testcase_17 AC 379 ms
102,108 KB
testcase_18 AC 232 ms
94,792 KB
testcase_19 AC 889 ms
172,960 KB
testcase_20 AC 147 ms
85,244 KB
testcase_21 AC 314 ms
103,852 KB
testcase_22 AC 388 ms
103,784 KB
testcase_23 AC 884 ms
173,168 KB
testcase_24 AC 886 ms
173,492 KB
testcase_25 AC 890 ms
173,620 KB
testcase_26 AC 888 ms
173,432 KB
testcase_27 AC 887 ms
173,476 KB
testcase_28 AC 39 ms
52,800 KB
testcase_29 AC 39 ms
52,552 KB
testcase_30 AC 38 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int, input().split()))

res = 0
mod = 998244353

for i in range(1,N+1):
    res += (a[i-1]*((i-1)*pow(2,max(0,i-2),mod)+pow(2,i-1,mod))*pow(2,N-i,mod))%mod
    res %= mod
print(res)
0