結果

問題 No.1299 Random Array Score
ユーザー KeroruKeroru
提出日時 2020-11-28 09:29:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 98 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 87,304 KB
実行使用メモリ 101,816 KB
最終ジャッジ日時 2023-10-09 23:39:49
合計ジャッジ時間 5,539 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,104 KB
testcase_01 AC 73 ms
71,364 KB
testcase_02 AC 72 ms
71,412 KB
testcase_03 AC 116 ms
100,472 KB
testcase_04 AC 115 ms
99,968 KB
testcase_05 AC 98 ms
90,256 KB
testcase_06 AC 96 ms
88,568 KB
testcase_07 AC 97 ms
88,684 KB
testcase_08 AC 118 ms
99,752 KB
testcase_09 AC 78 ms
75,488 KB
testcase_10 AC 88 ms
82,048 KB
testcase_11 AC 80 ms
76,192 KB
testcase_12 AC 95 ms
87,412 KB
testcase_13 AC 117 ms
101,500 KB
testcase_14 AC 95 ms
87,248 KB
testcase_15 AC 97 ms
88,452 KB
testcase_16 AC 95 ms
88,456 KB
testcase_17 AC 81 ms
76,932 KB
testcase_18 AC 91 ms
83,088 KB
testcase_19 AC 91 ms
84,352 KB
testcase_20 AC 84 ms
79,716 KB
testcase_21 AC 76 ms
75,664 KB
testcase_22 AC 81 ms
77,308 KB
testcase_23 AC 95 ms
88,144 KB
testcase_24 AC 99 ms
90,096 KB
testcase_25 AC 96 ms
87,252 KB
testcase_26 AC 76 ms
75,752 KB
testcase_27 AC 82 ms
77,688 KB
testcase_28 AC 81 ms
76,532 KB
testcase_29 AC 83 ms
78,568 KB
testcase_30 AC 93 ms
86,952 KB
testcase_31 AC 83 ms
78,708 KB
testcase_32 AC 117 ms
101,816 KB
testcase_33 AC 119 ms
98,768 KB
testcase_34 AC 94 ms
90,196 KB
testcase_35 AC 115 ms
98,632 KB
testcase_36 AC 97 ms
90,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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