結果

問題 No.1299 Random Array Score
ユーザー vwxyzvwxyz
提出日時 2022-07-30 20:57:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,524 KB
最終ジャッジ日時 2024-07-20 16:59:36
合計ジャッジ時間 5,209 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,368 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 92 ms
32,304 KB
testcase_04 AC 87 ms
31,580 KB
testcase_05 AC 75 ms
27,084 KB
testcase_06 AC 67 ms
25,176 KB
testcase_07 AC 73 ms
25,980 KB
testcase_08 AC 89 ms
31,444 KB
testcase_09 AC 27 ms
11,264 KB
testcase_10 AC 49 ms
18,860 KB
testcase_11 AC 32 ms
12,616 KB
testcase_12 AC 67 ms
24,224 KB
testcase_13 AC 89 ms
31,208 KB
testcase_14 AC 70 ms
24,624 KB
testcase_15 AC 74 ms
25,136 KB
testcase_16 AC 69 ms
24,904 KB
testcase_17 AC 34 ms
13,188 KB
testcase_18 AC 54 ms
19,536 KB
testcase_19 AC 57 ms
21,036 KB
testcase_20 AC 41 ms
16,048 KB
testcase_21 AC 27 ms
11,008 KB
testcase_22 AC 35 ms
13,692 KB
testcase_23 AC 69 ms
24,912 KB
testcase_24 AC 78 ms
26,768 KB
testcase_25 AC 67 ms
24,596 KB
testcase_26 AC 27 ms
10,880 KB
testcase_27 AC 36 ms
14,164 KB
testcase_28 AC 33 ms
13,032 KB
testcase_29 AC 37 ms
15,056 KB
testcase_30 AC 64 ms
24,236 KB
testcase_31 AC 39 ms
15,304 KB
testcase_32 AC 88 ms
30,944 KB
testcase_33 AC 91 ms
32,524 KB
testcase_34 AC 62 ms
14,612 KB
testcase_35 AC 101 ms
32,396 KB
testcase_36 AC 64 ms
14,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
readline=sys.stdin.readline

N,K=map(int,readline().split())
A=list(map(int,readline().split()))
mod=998244353
ans=sum(A)*pow(2,K,mod)%mod
print(ans)
0