結果

問題 No.1299 Random Array Score
ユーザー mlihua09mlihua09
提出日時 2020-12-05 15:07:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,400 KB
最終ジャッジ日時 2024-09-15 17:43:44
合計ジャッジ時間 5,072 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,072 KB
testcase_01 AC 42 ms
51,328 KB
testcase_02 AC 38 ms
51,328 KB
testcase_03 AC 75 ms
91,776 KB
testcase_04 AC 74 ms
91,264 KB
testcase_05 AC 68 ms
84,096 KB
testcase_06 AC 65 ms
80,256 KB
testcase_07 AC 65 ms
81,536 KB
testcase_08 AC 75 ms
91,008 KB
testcase_09 AC 42 ms
57,728 KB
testcase_10 AC 54 ms
70,412 KB
testcase_11 AC 45 ms
60,032 KB
testcase_12 AC 63 ms
78,848 KB
testcase_13 AC 74 ms
90,496 KB
testcase_14 AC 63 ms
79,616 KB
testcase_15 AC 64 ms
80,768 KB
testcase_16 AC 65 ms
80,768 KB
testcase_17 AC 46 ms
62,208 KB
testcase_18 AC 56 ms
72,192 KB
testcase_19 AC 58 ms
73,984 KB
testcase_20 AC 49 ms
66,048 KB
testcase_21 AC 42 ms
58,112 KB
testcase_22 AC 45 ms
62,336 KB
testcase_23 AC 64 ms
80,384 KB
testcase_24 AC 68 ms
83,712 KB
testcase_25 AC 62 ms
79,616 KB
testcase_26 AC 43 ms
57,472 KB
testcase_27 AC 46 ms
62,976 KB
testcase_28 AC 45 ms
61,056 KB
testcase_29 AC 49 ms
64,384 KB
testcase_30 AC 62 ms
79,232 KB
testcase_31 AC 48 ms
64,768 KB
testcase_32 AC 74 ms
90,880 KB
testcase_33 AC 89 ms
102,016 KB
testcase_34 AC 62 ms
80,512 KB
testcase_35 AC 88 ms
102,400 KB
testcase_36 AC 62 ms
80,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
N, K = map(int, input().split())

print(sum(map(int, input().split())) * pow(2, K, mod) % mod)
0