結果

問題 No.1299 Random Array Score
ユーザー yakeshibayakeshiba
提出日時 2021-06-08 22:06:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 107,556 KB
最終ジャッジ日時 2024-05-05 09:27:16
合計ジャッジ時間 5,068 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,296 KB
testcase_01 AC 37 ms
52,544 KB
testcase_02 AC 36 ms
52,256 KB
testcase_03 AC 94 ms
102,056 KB
testcase_04 AC 87 ms
107,308 KB
testcase_05 AC 73 ms
96,508 KB
testcase_06 AC 69 ms
91,840 KB
testcase_07 AC 70 ms
92,592 KB
testcase_08 AC 87 ms
107,556 KB
testcase_09 AC 40 ms
58,952 KB
testcase_10 AC 56 ms
78,524 KB
testcase_11 AC 43 ms
63,324 KB
testcase_12 AC 67 ms
89,952 KB
testcase_13 AC 83 ms
105,704 KB
testcase_14 AC 68 ms
89,472 KB
testcase_15 AC 69 ms
91,772 KB
testcase_16 AC 69 ms
91,568 KB
testcase_17 AC 44 ms
64,252 KB
testcase_18 AC 59 ms
79,412 KB
testcase_19 AC 61 ms
82,132 KB
testcase_20 AC 51 ms
71,892 KB
testcase_21 AC 41 ms
59,576 KB
testcase_22 AC 45 ms
66,800 KB
testcase_23 AC 69 ms
91,168 KB
testcase_24 AC 73 ms
96,744 KB
testcase_25 AC 67 ms
90,280 KB
testcase_26 AC 40 ms
59,520 KB
testcase_27 AC 46 ms
66,676 KB
testcase_28 AC 45 ms
65,296 KB
testcase_29 AC 49 ms
68,276 KB
testcase_30 AC 67 ms
88,652 KB
testcase_31 AC 48 ms
70,164 KB
testcase_32 AC 84 ms
105,380 KB
testcase_33 AC 95 ms
102,528 KB
testcase_34 AC 72 ms
97,252 KB
testcase_35 AC 96 ms
102,416 KB
testcase_36 AC 72 ms
97,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

n, k = map(int,input().split())
A = list(map(int,input().split()))

print(sum(A)*pow(2,k,mod)%mod)
0