結果

問題 No.1299 Random Array Score
ユーザー sibasyunsibasyun
提出日時 2021-01-20 18:07:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,528 KB
最終ジャッジ日時 2024-06-02 11:07:33
合計ジャッジ時間 4,570 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 103 ms
32,304 KB
testcase_04 AC 98 ms
31,772 KB
testcase_05 AC 83 ms
26,952 KB
testcase_06 AC 73 ms
25,296 KB
testcase_07 AC 77 ms
25,984 KB
testcase_08 AC 97 ms
31,568 KB
testcase_09 AC 29 ms
11,392 KB
testcase_10 AC 55 ms
18,980 KB
testcase_11 AC 35 ms
12,616 KB
testcase_12 AC 74 ms
24,352 KB
testcase_13 AC 94 ms
31,080 KB
testcase_14 AC 74 ms
24,752 KB
testcase_15 AC 74 ms
25,004 KB
testcase_16 AC 76 ms
24,904 KB
testcase_17 AC 37 ms
13,192 KB
testcase_18 AC 58 ms
19,664 KB
testcase_19 AC 62 ms
21,024 KB
testcase_20 AC 46 ms
16,308 KB
testcase_21 AC 30 ms
11,008 KB
testcase_22 AC 39 ms
13,692 KB
testcase_23 AC 74 ms
24,916 KB
testcase_24 AC 78 ms
26,772 KB
testcase_25 AC 74 ms
24,728 KB
testcase_26 AC 29 ms
10,880 KB
testcase_27 AC 39 ms
14,152 KB
testcase_28 AC 37 ms
13,140 KB
testcase_29 AC 41 ms
15,056 KB
testcase_30 AC 70 ms
23,888 KB
testcase_31 AC 43 ms
15,420 KB
testcase_32 AC 94 ms
31,112 KB
testcase_33 AC 99 ms
32,400 KB
testcase_34 AC 67 ms
14,580 KB
testcase_35 AC 102 ms
32,528 KB
testcase_36 AC 63 ms
14,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#1299
N, K = map(int, input().split())
A_list = list(map(int, input().split()))

Ex_mod = pow(2, K, 998244353) * (sum(A_list)%998244353)
Ans = Ex_mod % 998244353
print(Ans)
0