結果

問題 No.1299 Random Array Score
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-11-27 21:35:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-07-26 11:51:16
合計ジャッジ時間 4,190 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 97 ms
101,736 KB
testcase_04 AC 88 ms
107,392 KB
testcase_05 AC 76 ms
95,616 KB
testcase_06 AC 73 ms
91,776 KB
testcase_07 AC 74 ms
92,160 KB
testcase_08 AC 89 ms
107,648 KB
testcase_09 AC 45 ms
59,520 KB
testcase_10 AC 60 ms
77,184 KB
testcase_11 AC 46 ms
62,464 KB
testcase_12 AC 71 ms
88,704 KB
testcase_13 AC 87 ms
105,656 KB
testcase_14 AC 72 ms
89,088 KB
testcase_15 AC 75 ms
91,776 KB
testcase_16 AC 74 ms
91,648 KB
testcase_17 AC 48 ms
64,468 KB
testcase_18 AC 61 ms
78,848 KB
testcase_19 AC 65 ms
82,336 KB
testcase_20 AC 55 ms
71,040 KB
testcase_21 AC 46 ms
58,880 KB
testcase_22 AC 50 ms
65,076 KB
testcase_23 AC 73 ms
91,520 KB
testcase_24 AC 78 ms
95,676 KB
testcase_25 AC 72 ms
88,960 KB
testcase_26 AC 44 ms
58,624 KB
testcase_27 AC 50 ms
66,176 KB
testcase_28 AC 49 ms
63,872 KB
testcase_29 AC 51 ms
68,608 KB
testcase_30 AC 71 ms
88,576 KB
testcase_31 AC 52 ms
68,480 KB
testcase_32 AC 88 ms
105,472 KB
testcase_33 AC 98 ms
102,528 KB
testcase_34 AC 78 ms
95,616 KB
testcase_35 AC 102 ms
102,492 KB
testcase_36 AC 75 ms
96,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
N, K = map(int, input().split())
X = list(map(int, input().split()))
a=sum(X)
print(a*pow(2, K, MOD)%MOD)

0