結果

問題 No.1299 Random Array Score
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-19 19:09:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 100 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 107,596 KB
最終ジャッジ日時 2024-09-19 19:09:06
合計ジャッジ時間 5,496 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,768 KB
testcase_01 AC 38 ms
52,776 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 89 ms
101,644 KB
testcase_04 AC 84 ms
107,596 KB
testcase_05 AC 74 ms
97,504 KB
testcase_06 AC 67 ms
91,676 KB
testcase_07 AC 68 ms
93,176 KB
testcase_08 AC 84 ms
107,208 KB
testcase_09 AC 39 ms
60,012 KB
testcase_10 AC 54 ms
76,828 KB
testcase_11 AC 42 ms
62,452 KB
testcase_12 AC 65 ms
89,024 KB
testcase_13 AC 80 ms
106,060 KB
testcase_14 AC 66 ms
89,876 KB
testcase_15 AC 68 ms
92,336 KB
testcase_16 AC 75 ms
92,560 KB
testcase_17 AC 44 ms
65,660 KB
testcase_18 AC 56 ms
80,236 KB
testcase_19 AC 59 ms
83,356 KB
testcase_20 AC 53 ms
72,184 KB
testcase_21 AC 40 ms
59,236 KB
testcase_22 AC 47 ms
66,872 KB
testcase_23 AC 69 ms
91,488 KB
testcase_24 AC 73 ms
96,616 KB
testcase_25 AC 67 ms
89,232 KB
testcase_26 AC 40 ms
59,780 KB
testcase_27 AC 46 ms
67,932 KB
testcase_28 AC 42 ms
64,932 KB
testcase_29 AC 47 ms
68,252 KB
testcase_30 AC 65 ms
89,472 KB
testcase_31 AC 48 ms
68,900 KB
testcase_32 AC 80 ms
105,916 KB
testcase_33 AC 101 ms
102,636 KB
testcase_34 AC 69 ms
97,360 KB
testcase_35 AC 93 ms
102,408 KB
testcase_36 AC 73 ms
97,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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