結果

問題 No.1299 Random Array Score
ユーザー 8wings648wings64
提出日時 2020-11-27 21:39:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 107,656 KB
最終ジャッジ日時 2024-07-26 11:59:38
合計ジャッジ時間 4,041 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,580 KB
testcase_01 AC 37 ms
53,012 KB
testcase_02 AC 40 ms
52,908 KB
testcase_03 AC 96 ms
101,732 KB
testcase_04 AC 87 ms
107,656 KB
testcase_05 AC 73 ms
96,116 KB
testcase_06 AC 70 ms
91,752 KB
testcase_07 AC 69 ms
92,992 KB
testcase_08 AC 86 ms
107,416 KB
testcase_09 AC 41 ms
60,000 KB
testcase_10 AC 54 ms
76,928 KB
testcase_11 AC 43 ms
63,200 KB
testcase_12 AC 67 ms
90,028 KB
testcase_13 AC 83 ms
106,012 KB
testcase_14 AC 67 ms
90,028 KB
testcase_15 AC 71 ms
93,204 KB
testcase_16 AC 69 ms
91,664 KB
testcase_17 AC 45 ms
64,868 KB
testcase_18 AC 58 ms
79,804 KB
testcase_19 AC 60 ms
83,088 KB
testcase_20 AC 51 ms
73,060 KB
testcase_21 AC 40 ms
58,828 KB
testcase_22 AC 47 ms
66,120 KB
testcase_23 AC 69 ms
92,392 KB
testcase_24 AC 75 ms
95,872 KB
testcase_25 AC 67 ms
90,552 KB
testcase_26 AC 39 ms
58,852 KB
testcase_27 AC 46 ms
66,496 KB
testcase_28 AC 45 ms
65,520 KB
testcase_29 AC 47 ms
68,028 KB
testcase_30 AC 66 ms
88,536 KB
testcase_31 AC 49 ms
69,044 KB
testcase_32 AC 84 ms
106,040 KB
testcase_33 AC 93 ms
102,564 KB
testcase_34 AC 74 ms
96,972 KB
testcase_35 AC 96 ms
102,588 KB
testcase_36 AC 73 ms
96,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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