結果

問題 No.1299 Random Array Score
ユーザー roarisroaris
提出日時 2020-11-28 20:04:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 105,664 KB
最終ジャッジ日時 2024-09-12 23:33:29
合計ジャッジ時間 3,988 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,012 KB
testcase_01 AC 36 ms
52,888 KB
testcase_02 AC 35 ms
52,932 KB
testcase_03 AC 91 ms
100,008 KB
testcase_04 AC 85 ms
105,664 KB
testcase_05 AC 71 ms
96,188 KB
testcase_06 AC 67 ms
91,236 KB
testcase_07 AC 68 ms
92,188 KB
testcase_08 AC 84 ms
105,476 KB
testcase_09 AC 38 ms
59,280 KB
testcase_10 AC 55 ms
76,172 KB
testcase_11 AC 41 ms
62,428 KB
testcase_12 AC 64 ms
87,604 KB
testcase_13 AC 79 ms
104,244 KB
testcase_14 AC 66 ms
88,396 KB
testcase_15 AC 67 ms
90,412 KB
testcase_16 AC 68 ms
91,276 KB
testcase_17 AC 44 ms
64,456 KB
testcase_18 AC 56 ms
78,800 KB
testcase_19 AC 61 ms
81,964 KB
testcase_20 AC 50 ms
71,152 KB
testcase_21 AC 39 ms
58,960 KB
testcase_22 AC 44 ms
66,140 KB
testcase_23 AC 68 ms
91,020 KB
testcase_24 AC 71 ms
95,816 KB
testcase_25 AC 66 ms
89,044 KB
testcase_26 AC 39 ms
59,348 KB
testcase_27 AC 45 ms
66,436 KB
testcase_28 AC 42 ms
63,432 KB
testcase_29 AC 48 ms
68,092 KB
testcase_30 AC 66 ms
88,804 KB
testcase_31 AC 48 ms
68,952 KB
testcase_32 AC 80 ms
103,844 KB
testcase_33 AC 95 ms
100,564 KB
testcase_34 AC 69 ms
96,928 KB
testcase_35 AC 92 ms
100,444 KB
testcase_36 AC 69 ms
96,080 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