結果

問題 No.1299 Random Array Score
ユーザー tktk_snsntktk_snsn
提出日時 2020-11-27 23:13:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,664 KB
最終ジャッジ日時 2024-07-26 19:32:05
合計ジャッジ時間 3,974 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 109 ms
32,564 KB
testcase_04 AC 101 ms
31,896 KB
testcase_05 AC 86 ms
27,208 KB
testcase_06 AC 79 ms
25,432 KB
testcase_07 AC 82 ms
26,120 KB
testcase_08 AC 101 ms
31,700 KB
testcase_09 AC 33 ms
11,392 KB
testcase_10 AC 56 ms
19,116 KB
testcase_11 AC 37 ms
12,748 KB
testcase_12 AC 76 ms
24,616 KB
testcase_13 AC 99 ms
31,464 KB
testcase_14 AC 77 ms
24,884 KB
testcase_15 AC 79 ms
25,268 KB
testcase_16 AC 79 ms
25,160 KB
testcase_17 AC 40 ms
13,448 KB
testcase_18 AC 61 ms
19,792 KB
testcase_19 AC 66 ms
21,284 KB
testcase_20 AC 48 ms
16,312 KB
testcase_21 AC 31 ms
11,008 KB
testcase_22 AC 41 ms
13,828 KB
testcase_23 AC 77 ms
25,044 KB
testcase_24 AC 84 ms
27,032 KB
testcase_25 AC 79 ms
24,852 KB
testcase_26 AC 31 ms
11,008 KB
testcase_27 AC 43 ms
14,416 KB
testcase_28 AC 38 ms
13,272 KB
testcase_29 AC 44 ms
15,184 KB
testcase_30 AC 74 ms
24,364 KB
testcase_31 AC 45 ms
15,552 KB
testcase_32 AC 99 ms
31,244 KB
testcase_33 AC 106 ms
32,664 KB
testcase_34 AC 69 ms
14,712 KB
testcase_35 AC 105 ms
32,656 KB
testcase_36 AC 69 ms
14,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

n, k = map(int, input().split())
A = list(map(int, input().split()))
S = sum(A) % mod

ans = S + S * (pow(2, k, mod) - 1) % mod
print(ans % mod)
0