結果

問題 No.1299 Random Array Score
ユーザー 👑 KazunKazun
提出日時 2020-11-27 21:36:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 105,896 KB
最終ジャッジ日時 2024-07-26 11:53:15
合計ジャッジ時間 3,657 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,012 KB
testcase_01 AC 34 ms
52,748 KB
testcase_02 AC 36 ms
52,508 KB
testcase_03 AC 87 ms
99,980 KB
testcase_04 AC 84 ms
105,692 KB
testcase_05 AC 70 ms
95,272 KB
testcase_06 AC 66 ms
90,996 KB
testcase_07 AC 65 ms
91,456 KB
testcase_08 AC 80 ms
105,896 KB
testcase_09 AC 38 ms
59,708 KB
testcase_10 AC 52 ms
76,120 KB
testcase_11 AC 40 ms
62,628 KB
testcase_12 AC 63 ms
88,892 KB
testcase_13 AC 76 ms
103,960 KB
testcase_14 AC 63 ms
87,680 KB
testcase_15 AC 65 ms
90,912 KB
testcase_16 AC 66 ms
90,452 KB
testcase_17 AC 42 ms
64,040 KB
testcase_18 AC 53 ms
79,824 KB
testcase_19 AC 55 ms
81,332 KB
testcase_20 AC 47 ms
70,928 KB
testcase_21 AC 37 ms
58,744 KB
testcase_22 AC 43 ms
64,844 KB
testcase_23 AC 64 ms
90,580 KB
testcase_24 AC 68 ms
94,860 KB
testcase_25 AC 62 ms
89,676 KB
testcase_26 AC 37 ms
58,908 KB
testcase_27 AC 42 ms
66,216 KB
testcase_28 AC 42 ms
63,844 KB
testcase_29 AC 44 ms
68,260 KB
testcase_30 AC 65 ms
88,204 KB
testcase_31 AC 49 ms
68,836 KB
testcase_32 AC 81 ms
103,988 KB
testcase_33 AC 87 ms
100,264 KB
testcase_34 AC 67 ms
95,628 KB
testcase_35 AC 87 ms
100,440 KB
testcase_36 AC 66 ms
95,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

N,K=map(int,input().split())
A=list(map(int,input().split()))
Mod=998244353
print((sum(A)*pow(2,K,Mod))%Mod)
0