結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,724 KB
testcase_01 AC 34 ms
52,428 KB
testcase_02 AC 35 ms
52,356 KB
testcase_03 AC 94 ms
101,776 KB
testcase_04 AC 86 ms
107,432 KB
testcase_05 AC 75 ms
96,276 KB
testcase_06 AC 67 ms
91,920 KB
testcase_07 AC 66 ms
92,680 KB
testcase_08 AC 82 ms
107,360 KB
testcase_09 AC 38 ms
59,732 KB
testcase_10 AC 52 ms
77,912 KB
testcase_11 AC 40 ms
62,956 KB
testcase_12 AC 63 ms
89,428 KB
testcase_13 AC 76 ms
106,120 KB
testcase_14 AC 62 ms
90,292 KB
testcase_15 AC 64 ms
92,296 KB
testcase_16 AC 66 ms
92,360 KB
testcase_17 AC 41 ms
64,800 KB
testcase_18 AC 55 ms
79,440 KB
testcase_19 AC 57 ms
82,956 KB
testcase_20 AC 48 ms
71,488 KB
testcase_21 AC 37 ms
58,532 KB
testcase_22 AC 43 ms
67,104 KB
testcase_23 AC 65 ms
91,896 KB
testcase_24 AC 70 ms
95,872 KB
testcase_25 AC 63 ms
90,172 KB
testcase_26 AC 37 ms
59,628 KB
testcase_27 AC 43 ms
68,104 KB
testcase_28 AC 40 ms
64,568 KB
testcase_29 AC 45 ms
68,096 KB
testcase_30 AC 62 ms
89,092 KB
testcase_31 AC 46 ms
69,424 KB
testcase_32 AC 77 ms
105,832 KB
testcase_33 AC 89 ms
102,680 KB
testcase_34 AC 68 ms
97,320 KB
testcase_35 AC 87 ms
102,600 KB
testcase_36 AC 68 ms
96,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=998244353
N,K=map(int,input().split())
A=list(map(int,input().split()))

S=sum(A)

print(S*pow(2,K,MOD)%MOD)
0