結果

問題 No.1299 Random Array Score
ユーザー Kite_kumaKite_kuma
提出日時 2020-11-08 11:39:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 568 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,520 KB
最終ジャッジ日時 2024-07-22 15:03:19
合計ジャッジ時間 4,162 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,368 KB
testcase_01 AC 26 ms
10,368 KB
testcase_02 AC 26 ms
10,368 KB
testcase_03 AC 92 ms
32,428 KB
testcase_04 AC 88 ms
31,632 KB
testcase_05 AC 77 ms
26,948 KB
testcase_06 AC 71 ms
25,292 KB
testcase_07 AC 75 ms
25,920 KB
testcase_08 AC 91 ms
31,564 KB
testcase_09 AC 27 ms
11,136 KB
testcase_10 AC 49 ms
18,976 KB
testcase_11 AC 32 ms
12,612 KB
testcase_12 AC 69 ms
24,344 KB
testcase_13 AC 91 ms
31,204 KB
testcase_14 AC 70 ms
24,624 KB
testcase_15 AC 72 ms
24,872 KB
testcase_16 AC 71 ms
24,904 KB
testcase_17 AC 35 ms
13,188 KB
testcase_18 AC 54 ms
19,632 KB
testcase_19 AC 60 ms
21,024 KB
testcase_20 AC 43 ms
16,048 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 35 ms
13,560 KB
testcase_23 AC 69 ms
24,784 KB
testcase_24 AC 77 ms
26,892 KB
testcase_25 AC 69 ms
24,588 KB
testcase_26 AC 27 ms
10,752 KB
testcase_27 AC 37 ms
14,152 KB
testcase_28 AC 34 ms
13,004 KB
testcase_29 AC 41 ms
14,920 KB
testcase_30 AC 68 ms
23,884 KB
testcase_31 AC 42 ms
15,420 KB
testcase_32 AC 94 ms
30,988 KB
testcase_33 AC 100 ms
32,520 KB
testcase_34 AC 66 ms
14,492 KB
testcase_35 AC 97 ms
32,392 KB
testcase_36 AC 63 ms
14,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n, k = map(int, input().split())
a = list(map(int, input().split()))
print(sum(a) * pow(2, k, mod) % mod)
0