結果

問題 No.1299 Random Array Score
ユーザー KeroruKeroru
提出日時 2020-11-28 09:29:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 102,376 KB
最終ジャッジ日時 2024-09-12 22:11:03
合計ジャッジ時間 3,469 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,824 KB
testcase_01 AC 36 ms
51,828 KB
testcase_02 AC 37 ms
52,876 KB
testcase_03 AC 73 ms
91,800 KB
testcase_04 AC 70 ms
92,068 KB
testcase_05 AC 63 ms
84,696 KB
testcase_06 AC 60 ms
81,664 KB
testcase_07 AC 61 ms
82,308 KB
testcase_08 AC 69 ms
91,420 KB
testcase_09 AC 40 ms
58,836 KB
testcase_10 AC 51 ms
70,352 KB
testcase_11 AC 41 ms
62,376 KB
testcase_12 AC 58 ms
80,212 KB
testcase_13 AC 70 ms
91,224 KB
testcase_14 AC 58 ms
81,108 KB
testcase_15 AC 61 ms
81,544 KB
testcase_16 AC 59 ms
81,456 KB
testcase_17 AC 41 ms
62,996 KB
testcase_18 AC 53 ms
73,176 KB
testcase_19 AC 54 ms
74,816 KB
testcase_20 AC 46 ms
67,504 KB
testcase_21 AC 40 ms
58,576 KB
testcase_22 AC 42 ms
63,528 KB
testcase_23 AC 61 ms
81,160 KB
testcase_24 AC 65 ms
84,036 KB
testcase_25 AC 60 ms
80,276 KB
testcase_26 AC 39 ms
58,572 KB
testcase_27 AC 44 ms
64,056 KB
testcase_28 AC 41 ms
61,752 KB
testcase_29 AC 45 ms
64,868 KB
testcase_30 AC 58 ms
80,412 KB
testcase_31 AC 45 ms
66,300 KB
testcase_32 AC 69 ms
91,560 KB
testcase_33 AC 84 ms
102,316 KB
testcase_34 AC 57 ms
80,624 KB
testcase_35 AC 84 ms
102,376 KB
testcase_36 AC 57 ms
81,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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