結果

問題 No.1299 Random Array Score
ユーザー ntudantuda
提出日時 2024-01-01 18:46:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 107,472 KB
最終ジャッジ日時 2024-09-27 17:26:26
合計ジャッジ時間 4,849 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,224 KB
testcase_01 AC 33 ms
52,252 KB
testcase_02 AC 32 ms
52,468 KB
testcase_03 AC 89 ms
101,692 KB
testcase_04 AC 79 ms
107,296 KB
testcase_05 AC 68 ms
96,936 KB
testcase_06 AC 66 ms
92,088 KB
testcase_07 AC 66 ms
94,032 KB
testcase_08 AC 83 ms
107,472 KB
testcase_09 AC 38 ms
60,272 KB
testcase_10 AC 54 ms
76,920 KB
testcase_11 AC 41 ms
63,100 KB
testcase_12 AC 67 ms
88,636 KB
testcase_13 AC 83 ms
106,120 KB
testcase_14 AC 67 ms
89,896 KB
testcase_15 AC 65 ms
92,640 KB
testcase_16 AC 65 ms
93,212 KB
testcase_17 AC 49 ms
64,648 KB
testcase_18 AC 56 ms
79,180 KB
testcase_19 AC 60 ms
84,064 KB
testcase_20 AC 49 ms
71,800 KB
testcase_21 AC 37 ms
58,836 KB
testcase_22 AC 42 ms
65,920 KB
testcase_23 AC 63 ms
91,976 KB
testcase_24 AC 67 ms
96,424 KB
testcase_25 AC 63 ms
89,504 KB
testcase_26 AC 36 ms
59,132 KB
testcase_27 AC 43 ms
67,344 KB
testcase_28 AC 43 ms
63,856 KB
testcase_29 AC 44 ms
68,708 KB
testcase_30 AC 62 ms
88,480 KB
testcase_31 AC 44 ms
68,636 KB
testcase_32 AC 75 ms
105,968 KB
testcase_33 AC 87 ms
102,552 KB
testcase_34 AC 66 ms
96,796 KB
testcase_35 AC 89 ms
102,672 KB
testcase_36 AC 64 ms
97,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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