結果

問題 No.1299 Random Array Score
ユーザー irumo8202irumo8202
提出日時 2022-01-31 08:21:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 27,452 KB
最終ジャッジ日時 2024-06-11 08:42:48
合計ジャッジ時間 5,196 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 34 ms
10,624 KB
testcase_03 AC 98 ms
26,608 KB
testcase_04 AC 94 ms
26,040 KB
testcase_05 AC 79 ms
22,852 KB
testcase_06 AC 74 ms
21,348 KB
testcase_07 AC 80 ms
21,944 KB
testcase_08 AC 97 ms
25,904 KB
testcase_09 AC 33 ms
11,136 KB
testcase_10 AC 55 ms
16,908 KB
testcase_11 AC 37 ms
12,288 KB
testcase_12 AC 76 ms
20,656 KB
testcase_13 AC 95 ms
25,744 KB
testcase_14 AC 81 ms
21,080 KB
testcase_15 AC 80 ms
21,240 KB
testcase_16 AC 76 ms
21,344 KB
testcase_17 AC 42 ms
12,776 KB
testcase_18 AC 61 ms
17,164 KB
testcase_19 AC 67 ms
18,348 KB
testcase_20 AC 52 ms
14,692 KB
testcase_21 AC 34 ms
11,136 KB
testcase_22 AC 44 ms
12,932 KB
testcase_23 AC 75 ms
21,312 KB
testcase_24 AC 82 ms
22,548 KB
testcase_25 AC 76 ms
21,196 KB
testcase_26 AC 39 ms
11,008 KB
testcase_27 AC 46 ms
13,364 KB
testcase_28 AC 42 ms
12,496 KB
testcase_29 AC 49 ms
13,932 KB
testcase_30 AC 74 ms
20,656 KB
testcase_31 AC 51 ms
14,252 KB
testcase_32 AC 96 ms
25,984 KB
testcase_33 AC 101 ms
27,452 KB
testcase_34 AC 71 ms
13,552 KB
testcase_35 AC 98 ms
27,416 KB
testcase_36 AC 71 ms
13,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
S = sum(map(int, input().split()))
print(S * pow(2, K, M := 998244353) % M)
0