結果

問題 No.2111 Sum of Diff
ユーザー ニックネームニックネーム
提出日時 2022-10-28 21:44:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 940 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,640 KB
最終ジャッジ日時 2024-07-06 00:50:22
合計ジャッジ時間 11,735 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 931 ms
26,640 KB
testcase_03 AC 626 ms
21,540 KB
testcase_04 AC 128 ms
12,812 KB
testcase_05 AC 937 ms
26,512 KB
testcase_06 AC 940 ms
26,516 KB
testcase_07 AC 226 ms
14,420 KB
testcase_08 AC 304 ms
15,956 KB
testcase_09 AC 73 ms
11,648 KB
testcase_10 AC 92 ms
12,160 KB
testcase_11 AC 431 ms
18,204 KB
testcase_12 AC 437 ms
17,920 KB
testcase_13 AC 268 ms
15,432 KB
testcase_14 AC 772 ms
23,724 KB
testcase_15 AC 902 ms
25,924 KB
testcase_16 AC 365 ms
17,304 KB
testcase_17 AC 920 ms
26,508 KB
testcase_18 AC 276 ms
15,700 KB
testcase_19 AC 687 ms
22,580 KB
testcase_20 AC 932 ms
26,516 KB
testcase_21 AC 35 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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