結果

問題 No.1299 Random Array Score
ユーザー sibasyunsibasyun
提出日時 2021-01-20 18:07:26
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 32,524 KB
最終ジャッジ日時 2024-12-23 08:02:17
合計ジャッジ時間 5,190 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,368 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 106 ms
32,304 KB
testcase_04 AC 102 ms
31,636 KB
testcase_05 AC 87 ms
26,952 KB
testcase_06 AC 80 ms
25,304 KB
testcase_07 AC 84 ms
25,604 KB
testcase_08 AC 104 ms
31,312 KB
testcase_09 AC 32 ms
11,264 KB
testcase_10 AC 57 ms
18,984 KB
testcase_11 AC 38 ms
12,492 KB
testcase_12 AC 77 ms
24,096 KB
testcase_13 AC 101 ms
30,948 KB
testcase_14 AC 78 ms
24,628 KB
testcase_15 AC 81 ms
25,004 KB
testcase_16 AC 79 ms
24,904 KB
testcase_17 AC 40 ms
13,320 KB
testcase_18 AC 62 ms
19,664 KB
testcase_19 AC 67 ms
21,028 KB
testcase_20 AC 49 ms
16,184 KB
testcase_21 AC 32 ms
10,752 KB
testcase_22 AC 43 ms
13,688 KB
testcase_23 AC 80 ms
24,792 KB
testcase_24 AC 87 ms
26,644 KB
testcase_25 AC 79 ms
24,592 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 42 ms
14,308 KB
testcase_28 AC 39 ms
13,144 KB
testcase_29 AC 44 ms
14,804 KB
testcase_30 AC 76 ms
23,760 KB
testcase_31 AC 46 ms
15,292 KB
testcase_32 AC 99 ms
31,116 KB
testcase_33 AC 105 ms
32,524 KB
testcase_34 AC 71 ms
14,452 KB
testcase_35 AC 106 ms
32,400 KB
testcase_36 AC 71 ms
14,584 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