結果

問題 No.1299 Random Array Score
ユーザー ibyiby
提出日時 2020-11-28 19:49:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-09-12 23:31:33
合計ジャッジ時間 4,216 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 100 ms
32,572 KB
testcase_04 AC 99 ms
32,028 KB
testcase_05 AC 85 ms
27,220 KB
testcase_06 AC 76 ms
25,428 KB
testcase_07 AC 81 ms
25,868 KB
testcase_08 AC 99 ms
31,576 KB
testcase_09 AC 32 ms
11,520 KB
testcase_10 AC 57 ms
19,112 KB
testcase_11 AC 36 ms
12,768 KB
testcase_12 AC 75 ms
24,484 KB
testcase_13 AC 97 ms
31,216 KB
testcase_14 AC 75 ms
24,892 KB
testcase_15 AC 79 ms
25,400 KB
testcase_16 AC 78 ms
25,168 KB
testcase_17 AC 39 ms
13,452 KB
testcase_18 AC 60 ms
19,672 KB
testcase_19 AC 64 ms
21,284 KB
testcase_20 AC 48 ms
16,372 KB
testcase_21 AC 31 ms
11,008 KB
testcase_22 AC 40 ms
13,828 KB
testcase_23 AC 76 ms
25,176 KB
testcase_24 AC 83 ms
27,028 KB
testcase_25 AC 76 ms
24,856 KB
testcase_26 AC 29 ms
11,008 KB
testcase_27 AC 42 ms
14,384 KB
testcase_28 AC 38 ms
13,152 KB
testcase_29 AC 44 ms
15,308 KB
testcase_30 AC 73 ms
24,152 KB
testcase_31 AC 45 ms
15,552 KB
testcase_32 AC 97 ms
31,236 KB
testcase_33 AC 103 ms
32,660 KB
testcase_34 AC 69 ms
14,708 KB
testcase_35 AC 103 ms
32,536 KB
testcase_36 AC 69 ms
13,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
MOD = 998244353
S = sum(A)
ans = pow(2,K,MOD)*S
print(ans % MOD)
0