結果

問題 No.1299 Random Array Score
ユーザー trineutrontrineutron
提出日時 2020-11-27 21:30:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,560 KB
最終ジャッジ日時 2024-07-23 22:08:59
合計ジャッジ時間 4,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 101 ms
32,560 KB
testcase_04 AC 97 ms
31,772 KB
testcase_05 AC 83 ms
26,984 KB
testcase_06 AC 75 ms
25,300 KB
testcase_07 AC 79 ms
25,984 KB
testcase_08 AC 98 ms
31,688 KB
testcase_09 AC 31 ms
11,264 KB
testcase_10 AC 56 ms
19,104 KB
testcase_11 AC 37 ms
12,740 KB
testcase_12 AC 75 ms
24,344 KB
testcase_13 AC 96 ms
31,328 KB
testcase_14 AC 75 ms
24,752 KB
testcase_15 AC 76 ms
25,256 KB
testcase_16 AC 76 ms
25,132 KB
testcase_17 AC 39 ms
13,316 KB
testcase_18 AC 59 ms
19,652 KB
testcase_19 AC 63 ms
21,152 KB
testcase_20 AC 48 ms
16,180 KB
testcase_21 AC 31 ms
11,008 KB
testcase_22 AC 40 ms
13,688 KB
testcase_23 AC 77 ms
24,908 KB
testcase_24 AC 82 ms
27,024 KB
testcase_25 AC 76 ms
24,852 KB
testcase_26 AC 30 ms
11,008 KB
testcase_27 AC 42 ms
14,404 KB
testcase_28 AC 38 ms
13,260 KB
testcase_29 AC 43 ms
15,048 KB
testcase_30 AC 73 ms
24,140 KB
testcase_31 AC 44 ms
15,420 KB
testcase_32 AC 97 ms
31,112 KB
testcase_33 AC 102 ms
32,524 KB
testcase_34 AC 68 ms
14,576 KB
testcase_35 AC 103 ms
32,524 KB
testcase_36 AC 68 ms
14,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n, k = map(int, input().split())
s = sum(list(map(int, input().split()))) % mod
print(pow(2, k, mod) * s % mod)
0