結果

問題 No.1299 Random Array Score
ユーザー timitimi
提出日時 2020-12-03 22:57:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 650 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 32,524 KB
最終ジャッジ日時 2024-09-14 08:18:49
合計ジャッジ時間 5,119 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,368 KB
testcase_01 AC 32 ms
10,368 KB
testcase_02 AC 32 ms
10,368 KB
testcase_03 AC 106 ms
32,304 KB
testcase_04 AC 99 ms
31,632 KB
testcase_05 AC 87 ms
27,076 KB
testcase_06 AC 79 ms
25,272 KB
testcase_07 AC 81 ms
25,852 KB
testcase_08 AC 98 ms
31,436 KB
testcase_09 AC 31 ms
11,264 KB
testcase_10 AC 56 ms
18,848 KB
testcase_11 AC 36 ms
12,616 KB
testcase_12 AC 74 ms
24,348 KB
testcase_13 AC 98 ms
31,160 KB
testcase_14 AC 77 ms
24,748 KB
testcase_15 AC 77 ms
25,000 KB
testcase_16 AC 77 ms
24,900 KB
testcase_17 AC 39 ms
13,316 KB
testcase_18 AC 59 ms
19,656 KB
testcase_19 AC 65 ms
21,024 KB
testcase_20 AC 49 ms
16,176 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 40 ms
13,812 KB
testcase_23 AC 76 ms
24,788 KB
testcase_24 AC 83 ms
26,764 KB
testcase_25 AC 77 ms
24,588 KB
testcase_26 AC 31 ms
10,880 KB
testcase_27 AC 42 ms
14,148 KB
testcase_28 AC 38 ms
13,132 KB
testcase_29 AC 44 ms
14,924 KB
testcase_30 AC 74 ms
24,008 KB
testcase_31 AC 45 ms
15,292 KB
testcase_32 AC 97 ms
31,108 KB
testcase_33 AC 103 ms
32,524 KB
testcase_34 AC 69 ms
14,572 KB
testcase_35 AC 105 ms
32,524 KB
testcase_36 AC 68 ms
14,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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