結果

問題 No.1325 Subsequence Score
ユーザー hiro1729hiro1729
提出日時 2023-09-10 16:03:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 172,884 KB
最終ジャッジ日時 2024-06-28 07:10:50
合計ジャッジ時間 4,846 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,560 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,704 KB
testcase_03 AC 44 ms
59,180 KB
testcase_04 AC 38 ms
53,300 KB
testcase_05 AC 45 ms
59,512 KB
testcase_06 AC 39 ms
52,968 KB
testcase_07 AC 44 ms
60,708 KB
testcase_08 AC 39 ms
52,352 KB
testcase_09 AC 39 ms
52,780 KB
testcase_10 AC 40 ms
52,332 KB
testcase_11 AC 41 ms
52,344 KB
testcase_12 AC 40 ms
52,232 KB
testcase_13 AC 185 ms
171,716 KB
testcase_14 AC 78 ms
96,052 KB
testcase_15 AC 161 ms
148,232 KB
testcase_16 AC 176 ms
161,356 KB
testcase_17 AC 104 ms
102,100 KB
testcase_18 AC 74 ms
92,012 KB
testcase_19 AC 188 ms
172,404 KB
testcase_20 AC 59 ms
76,200 KB
testcase_21 AC 90 ms
103,664 KB
testcase_22 AC 108 ms
103,832 KB
testcase_23 AC 187 ms
172,596 KB
testcase_24 AC 191 ms
172,636 KB
testcase_25 AC 192 ms
172,536 KB
testcase_26 AC 186 ms
172,492 KB
testcase_27 AC 186 ms
172,884 KB
testcase_28 AC 39 ms
52,820 KB
testcase_29 AC 38 ms
53,044 KB
testcase_30 AC 40 ms
53,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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