結果

問題 No.1325 Subsequence Score
ユーザー KudeKude
提出日時 2020-12-22 03:36:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 136,784 KB
最終ジャッジ日時 2024-09-21 13:42:09
合計ジャッジ時間 8,892 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 36 ms
51,328 KB
testcase_03 AC 44 ms
59,520 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 45 ms
60,032 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 43 ms
59,520 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 38 ms
52,096 KB
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 553 ms
135,296 KB
testcase_14 AC 198 ms
94,208 KB
testcase_15 AC 483 ms
120,024 KB
testcase_16 AC 542 ms
128,964 KB
testcase_17 AC 269 ms
100,736 KB
testcase_18 AC 177 ms
91,392 KB
testcase_19 AC 632 ms
136,784 KB
testcase_20 AC 118 ms
83,456 KB
testcase_21 AC 242 ms
98,688 KB
testcase_22 AC 276 ms
101,888 KB
testcase_23 AC 606 ms
136,492 KB
testcase_24 AC 601 ms
136,380 KB
testcase_25 AC 610 ms
136,324 KB
testcase_26 AC 615 ms
136,324 KB
testcase_27 AC 611 ms
136,376 KB
testcase_28 AC 36 ms
51,840 KB
testcase_29 AC 37 ms
51,328 KB
testcase_30 AC 37 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n = int(input())
ans = 0
for i, b in enumerate(map(int, input().split())):
    ans += (pow(2, n - 1, MOD) + (pow(2, n - 2, MOD) * i if n > 1 else 0)) * b
print(ans % MOD)
0