結果

問題 No.1325 Subsequence Score
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-22 02:48:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 153,976 KB
最終ジャッジ日時 2024-09-21 13:40:38
合計ジャッジ時間 4,093 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 40 ms
59,008 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 43 ms
59,136 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 43 ms
58,752 KB
testcase_08 AC 37 ms
51,584 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 36 ms
51,840 KB
testcase_11 AC 35 ms
51,840 KB
testcase_12 AC 35 ms
51,968 KB
testcase_13 AC 154 ms
153,588 KB
testcase_14 AC 74 ms
92,928 KB
testcase_15 AC 141 ms
136,140 KB
testcase_16 AC 148 ms
144,712 KB
testcase_17 AC 101 ms
102,016 KB
testcase_18 AC 72 ms
88,704 KB
testcase_19 AC 154 ms
153,800 KB
testcase_20 AC 56 ms
75,008 KB
testcase_21 AC 87 ms
101,504 KB
testcase_22 AC 109 ms
104,192 KB
testcase_23 AC 157 ms
153,960 KB
testcase_24 AC 160 ms
153,976 KB
testcase_25 AC 155 ms
153,848 KB
testcase_26 AC 157 ms
153,852 KB
testcase_27 AC 161 ms
153,856 KB
testcase_28 AC 35 ms
51,584 KB
testcase_29 AC 35 ms
51,584 KB
testcase_30 AC 37 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
mod = 998244353

ans = 0
cnt = pow(2, N - 1, mod)
d = pow(2, N - 2, mod)
for a in A:
    ans += a * cnt
    ans %= mod
    cnt += d
    cnt %= mod

print(ans)
0