結果

問題 No.1325 Subsequence Score
ユーザー ああいいああいい
提出日時 2022-03-12 17:47:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 896 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 172,852 KB
最終ジャッジ日時 2024-09-17 01:29:11
合計ジャッジ時間 13,266 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,200 KB
testcase_01 AC 42 ms
51,456 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 51 ms
59,904 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 51 ms
60,288 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 49 ms
59,776 KB
testcase_08 AC 40 ms
51,456 KB
testcase_09 AC 40 ms
51,584 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 42 ms
52,096 KB
testcase_13 AC 882 ms
171,880 KB
testcase_14 AC 268 ms
97,252 KB
testcase_15 AC 727 ms
148,336 KB
testcase_16 AC 821 ms
161,084 KB
testcase_17 AC 374 ms
102,072 KB
testcase_18 AC 228 ms
94,472 KB
testcase_19 AC 879 ms
172,428 KB
testcase_20 AC 139 ms
83,056 KB
testcase_21 AC 318 ms
103,552 KB
testcase_22 AC 393 ms
103,680 KB
testcase_23 AC 889 ms
172,828 KB
testcase_24 AC 894 ms
172,852 KB
testcase_25 AC 885 ms
172,736 KB
testcase_26 AC 896 ms
172,656 KB
testcase_27 AC 893 ms
172,528 KB
testcase_28 AC 37 ms
51,584 KB
testcase_29 AC 38 ms
51,328 KB
testcase_30 AC 38 ms
51,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int,input().split()))
ans = 0
P = 998244353
for i in range(N):
    i += 1
    tmp = pow(2,N-i,P) * (pow(2,i-1,P)+(i-1)*pow(2,i-2,P))%P
    ans += a[i-1] * tmp
    ans %= P
print(ans)
0