結果

問題 No.1325 Subsequence Score
ユーザー H3PO4H3PO4
提出日時 2020-12-22 00:19:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,674 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 67,512 KB
最終ジャッジ日時 2024-09-21 13:29:10
合計ジャッジ時間 18,936 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 33 ms
10,496 KB
testcase_04 AC 32 ms
10,496 KB
testcase_05 AC 34 ms
10,624 KB
testcase_06 AC 31 ms
10,496 KB
testcase_07 AC 32 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 1,531 ms
65,312 KB
testcase_14 AC 435 ms
25,576 KB
testcase_15 AC 1,314 ms
55,924 KB
testcase_16 AC 1,461 ms
62,508 KB
testcase_17 AC 655 ms
33,304 KB
testcase_18 AC 391 ms
24,076 KB
testcase_19 AC 1,674 ms
66,012 KB
testcase_20 AC 206 ms
17,620 KB
testcase_21 AC 556 ms
29,064 KB
testcase_22 AC 674 ms
33,748 KB
testcase_23 AC 1,609 ms
67,512 KB
testcase_24 AC 1,625 ms
65,588 KB
testcase_25 AC 1,612 ms
65,692 KB
testcase_26 AC 1,615 ms
65,584 KB
testcase_27 AC 1,610 ms
65,580 KB
testcase_28 AC 30 ms
10,368 KB
testcase_29 AC 30 ms
10,496 KB
testcase_30 AC 29 ms
10,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = tuple(map(int, input().split()))
MOD = 998244353
ans = 0
for i, a in enumerate(A):
    ans += a * (i + 2) * pow(2, N - 2, MOD)
    ans %= MOD
print(ans)
0