結果

問題 No.1299 Random Array Score
ユーザー nok0nok0
提出日時 2020-11-08 12:07:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 102,784 KB
最終ジャッジ日時 2024-07-22 15:04:45
合計ジャッジ時間 3,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 73 ms
91,776 KB
testcase_04 AC 74 ms
91,392 KB
testcase_05 AC 67 ms
84,224 KB
testcase_06 AC 64 ms
80,896 KB
testcase_07 AC 63 ms
81,664 KB
testcase_08 AC 70 ms
91,136 KB
testcase_09 AC 39 ms
58,112 KB
testcase_10 AC 50 ms
70,528 KB
testcase_11 AC 46 ms
60,672 KB
testcase_12 AC 65 ms
79,616 KB
testcase_13 AC 72 ms
91,008 KB
testcase_14 AC 65 ms
79,616 KB
testcase_15 AC 63 ms
81,024 KB
testcase_16 AC 65 ms
81,024 KB
testcase_17 AC 45 ms
61,824 KB
testcase_18 AC 57 ms
72,064 KB
testcase_19 AC 60 ms
74,240 KB
testcase_20 AC 49 ms
66,688 KB
testcase_21 AC 39 ms
58,112 KB
testcase_22 AC 44 ms
62,720 KB
testcase_23 AC 64 ms
80,640 KB
testcase_24 AC 66 ms
83,968 KB
testcase_25 AC 63 ms
79,744 KB
testcase_26 AC 39 ms
58,112 KB
testcase_27 AC 45 ms
63,360 KB
testcase_28 AC 44 ms
61,568 KB
testcase_29 AC 46 ms
64,896 KB
testcase_30 AC 65 ms
78,848 KB
testcase_31 AC 48 ms
64,768 KB
testcase_32 AC 79 ms
91,264 KB
testcase_33 AC 88 ms
102,400 KB
testcase_34 AC 63 ms
80,512 KB
testcase_35 AC 87 ms
102,784 KB
testcase_36 AC 60 ms
80,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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