結果

問題 No.1299 Random Array Score
ユーザー lloyzlloyz
提出日時 2022-01-29 16:59:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,432 KB
最終ジャッジ日時 2024-06-10 16:34:41
合計ジャッジ時間 4,698 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 24 ms
10,496 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 100 ms
32,432 KB
testcase_04 AC 96 ms
31,612 KB
testcase_05 AC 75 ms
27,084 KB
testcase_06 AC 66 ms
25,172 KB
testcase_07 AC 72 ms
25,820 KB
testcase_08 AC 88 ms
31,436 KB
testcase_09 AC 27 ms
11,264 KB
testcase_10 AC 48 ms
18,980 KB
testcase_11 AC 31 ms
12,616 KB
testcase_12 AC 65 ms
24,348 KB
testcase_13 AC 85 ms
31,204 KB
testcase_14 AC 65 ms
24,752 KB
testcase_15 AC 67 ms
25,136 KB
testcase_16 AC 67 ms
25,028 KB
testcase_17 AC 34 ms
13,316 KB
testcase_18 AC 51 ms
19,636 KB
testcase_19 AC 55 ms
21,156 KB
testcase_20 AC 40 ms
16,052 KB
testcase_21 AC 25 ms
10,880 KB
testcase_22 AC 33 ms
13,692 KB
testcase_23 AC 65 ms
24,916 KB
testcase_24 AC 72 ms
26,900 KB
testcase_25 AC 66 ms
24,596 KB
testcase_26 AC 26 ms
10,880 KB
testcase_27 AC 34 ms
14,280 KB
testcase_28 AC 32 ms
13,012 KB
testcase_29 AC 37 ms
15,052 KB
testcase_30 AC 64 ms
24,032 KB
testcase_31 AC 39 ms
15,296 KB
testcase_32 AC 84 ms
30,988 KB
testcase_33 AC 91 ms
32,400 KB
testcase_34 AC 60 ms
14,580 KB
testcase_35 AC 88 ms
32,404 KB
testcase_36 AC 59 ms
14,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

sumA = sum(A) % mod
print(sumA * pow(2, k, mod) % mod)
0