結果

問題 No.1299 Random Array Score
ユーザー Kiri8128Kiri8128
提出日時 2020-11-27 21:25:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,108 KB
最終ジャッジ日時 2024-07-23 21:58:46
合計ジャッジ時間 4,212 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 115 ms
32,560 KB
testcase_04 AC 111 ms
31,768 KB
testcase_05 AC 92 ms
27,220 KB
testcase_06 AC 85 ms
25,420 KB
testcase_07 AC 88 ms
25,856 KB
testcase_08 AC 111 ms
31,440 KB
testcase_09 AC 32 ms
11,264 KB
testcase_10 AC 61 ms
19,104 KB
testcase_11 AC 37 ms
12,492 KB
testcase_12 AC 82 ms
24,352 KB
testcase_13 AC 109 ms
31,208 KB
testcase_14 AC 85 ms
24,756 KB
testcase_15 AC 87 ms
25,004 KB
testcase_16 AC 84 ms
25,132 KB
testcase_17 AC 41 ms
13,448 KB
testcase_18 AC 66 ms
19,792 KB
testcase_19 AC 71 ms
21,156 KB
testcase_20 AC 52 ms
16,308 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 AC 43 ms
13,824 KB
testcase_23 AC 83 ms
25,140 KB
testcase_24 AC 93 ms
27,028 KB
testcase_25 AC 85 ms
24,852 KB
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 44 ms
14,284 KB
testcase_28 AC 40 ms
13,268 KB
testcase_29 AC 46 ms
15,048 KB
testcase_30 AC 81 ms
24,096 KB
testcase_31 AC 48 ms
15,284 KB
testcase_32 AC 107 ms
31,452 KB
testcase_33 AC 114 ms
32,908 KB
testcase_34 AC 82 ms
14,572 KB
testcase_35 AC 113 ms
33,108 KB
testcase_36 AC 82 ms
14,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
print(sum([int(a) for a in input().split()]) * pow(2, K, 998244353) % 998244353)
0