結果

問題 No.1299 Random Array Score
ユーザー nok0nok0
提出日時 2020-11-19 10:09:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 109 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,840 KB
実行使用メモリ 102,760 KB
最終ジャッジ日時 2024-07-23 09:52:56
合計ジャッジ時間 3,919 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,832 KB
testcase_01 AC 38 ms
53,068 KB
testcase_02 AC 36 ms
53,368 KB
testcase_03 AC 70 ms
91,716 KB
testcase_04 AC 70 ms
91,508 KB
testcase_05 AC 63 ms
85,364 KB
testcase_06 AC 61 ms
81,276 KB
testcase_07 AC 61 ms
81,624 KB
testcase_08 AC 69 ms
91,364 KB
testcase_09 AC 40 ms
59,348 KB
testcase_10 AC 50 ms
70,972 KB
testcase_11 AC 41 ms
61,156 KB
testcase_12 AC 59 ms
79,676 KB
testcase_13 AC 70 ms
91,536 KB
testcase_14 AC 61 ms
80,276 KB
testcase_15 AC 60 ms
82,112 KB
testcase_16 AC 61 ms
82,148 KB
testcase_17 AC 41 ms
62,260 KB
testcase_18 AC 51 ms
72,716 KB
testcase_19 AC 54 ms
74,996 KB
testcase_20 AC 48 ms
66,808 KB
testcase_21 AC 39 ms
58,552 KB
testcase_22 AC 44 ms
63,828 KB
testcase_23 AC 61 ms
81,708 KB
testcase_24 AC 64 ms
84,364 KB
testcase_25 AC 60 ms
79,480 KB
testcase_26 AC 40 ms
58,524 KB
testcase_27 AC 44 ms
64,412 KB
testcase_28 AC 42 ms
62,632 KB
testcase_29 AC 44 ms
66,032 KB
testcase_30 AC 59 ms
79,992 KB
testcase_31 AC 44 ms
66,096 KB
testcase_32 AC 69 ms
91,220 KB
testcase_33 AC 82 ms
102,516 KB
testcase_34 AC 58 ms
82,520 KB
testcase_35 AC 85 ms
102,760 KB
testcase_36 AC 58 ms
81,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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