結果

問題 No.1299 Random Array Score
ユーザー nok0nok0
提出日時 2020-11-19 10:08:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 598 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 102,632 KB
最終ジャッジ日時 2024-07-23 09:52:35
合計ジャッジ時間 4,794 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,568 KB
testcase_01 AC 36 ms
53,568 KB
testcase_02 AC 37 ms
52,136 KB
testcase_03 AC 73 ms
92,484 KB
testcase_04 AC 71 ms
91,520 KB
testcase_05 AC 65 ms
84,604 KB
testcase_06 AC 62 ms
81,204 KB
testcase_07 AC 63 ms
83,024 KB
testcase_08 AC 71 ms
90,900 KB
testcase_09 AC 40 ms
59,040 KB
testcase_10 AC 52 ms
71,532 KB
testcase_11 AC 42 ms
61,980 KB
testcase_12 AC 61 ms
80,008 KB
testcase_13 AC 71 ms
91,772 KB
testcase_14 AC 61 ms
79,832 KB
testcase_15 AC 62 ms
81,808 KB
testcase_16 AC 62 ms
81,752 KB
testcase_17 AC 44 ms
62,672 KB
testcase_18 AC 53 ms
72,396 KB
testcase_19 AC 56 ms
76,360 KB
testcase_20 AC 46 ms
67,016 KB
testcase_21 AC 41 ms
58,424 KB
testcase_22 AC 43 ms
62,860 KB
testcase_23 AC 61 ms
81,912 KB
testcase_24 AC 65 ms
84,440 KB
testcase_25 AC 61 ms
80,612 KB
testcase_26 AC 40 ms
59,020 KB
testcase_27 AC 45 ms
64,812 KB
testcase_28 AC 44 ms
63,500 KB
testcase_29 AC 46 ms
65,868 KB
testcase_30 AC 60 ms
80,124 KB
testcase_31 AC 45 ms
65,820 KB
testcase_32 AC 70 ms
91,500 KB
testcase_33 AC 84 ms
102,260 KB
testcase_34 AC 60 ms
81,152 KB
testcase_35 AC 88 ms
102,632 KB
testcase_36 AC 60 ms
81,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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