結果

問題 No.1325 Subsequence Score
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-22 02:52:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 250 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 66,296 KB
最終ジャッジ日時 2024-09-21 13:40:53
合計ジャッジ時間 7,055 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 456 ms
64,924 KB
testcase_14 AC 149 ms
25,836 KB
testcase_15 AC 391 ms
55,932 KB
testcase_16 AC 421 ms
62,736 KB
testcase_17 AC 210 ms
33,308 KB
testcase_18 AC 130 ms
23,832 KB
testcase_19 AC 465 ms
66,276 KB
testcase_20 AC 84 ms
17,632 KB
testcase_21 AC 176 ms
29,072 KB
testcase_22 AC 211 ms
33,540 KB
testcase_23 AC 441 ms
66,296 KB
testcase_24 AC 462 ms
65,520 KB
testcase_25 AC 449 ms
65,476 KB
testcase_26 AC 457 ms
65,516 KB
testcase_27 AC 448 ms
65,264 KB
testcase_28 AC 28 ms
10,624 KB
testcase_29 AC 27 ms
10,624 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if N == 1:
    print(A[0])
    exit()

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