結果

問題 No.1325 Subsequence Score
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-22 02:54:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 154,048 KB
最終ジャッジ日時 2024-09-21 13:40:57
合計ジャッジ時間 4,080 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,328 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 43 ms
59,392 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 43 ms
59,264 KB
testcase_06 AC 38 ms
52,608 KB
testcase_07 AC 41 ms
58,880 KB
testcase_08 AC 36 ms
51,712 KB
testcase_09 AC 38 ms
51,456 KB
testcase_10 AC 36 ms
52,480 KB
testcase_11 AC 36 ms
52,224 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 148 ms
153,828 KB
testcase_14 AC 73 ms
92,928 KB
testcase_15 AC 134 ms
135,744 KB
testcase_16 AC 142 ms
144,936 KB
testcase_17 AC 98 ms
102,016 KB
testcase_18 AC 71 ms
88,704 KB
testcase_19 AC 147 ms
154,048 KB
testcase_20 AC 56 ms
75,520 KB
testcase_21 AC 83 ms
101,888 KB
testcase_22 AC 102 ms
104,320 KB
testcase_23 AC 147 ms
153,840 KB
testcase_24 AC 149 ms
153,844 KB
testcase_25 AC 149 ms
153,584 KB
testcase_26 AC 147 ms
153,832 KB
testcase_27 AC 148 ms
154,032 KB
testcase_28 AC 36 ms
52,096 KB
testcase_29 AC 35 ms
51,840 KB
testcase_30 AC 33 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if N == 1:
    print(A[0] % mod)
    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