結果

問題 No.1299 Random Array Score
ユーザー naniwazunaniwazu
提出日時 2020-11-27 22:25:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 107,424 KB
最終ジャッジ日時 2024-07-26 18:42:22
合計ジャッジ時間 4,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,760 KB
testcase_01 AC 40 ms
51,672 KB
testcase_02 AC 39 ms
52,104 KB
testcase_03 AC 92 ms
101,952 KB
testcase_04 AC 86 ms
107,424 KB
testcase_05 AC 75 ms
95,932 KB
testcase_06 AC 71 ms
92,516 KB
testcase_07 AC 71 ms
93,512 KB
testcase_08 AC 88 ms
107,328 KB
testcase_09 AC 42 ms
60,260 KB
testcase_10 AC 58 ms
77,856 KB
testcase_11 AC 44 ms
63,144 KB
testcase_12 AC 67 ms
89,320 KB
testcase_13 AC 83 ms
106,008 KB
testcase_14 AC 69 ms
90,144 KB
testcase_15 AC 72 ms
92,292 KB
testcase_16 AC 71 ms
91,804 KB
testcase_17 AC 47 ms
64,528 KB
testcase_18 AC 60 ms
78,740 KB
testcase_19 AC 63 ms
82,360 KB
testcase_20 AC 52 ms
71,876 KB
testcase_21 AC 41 ms
58,768 KB
testcase_22 AC 48 ms
65,456 KB
testcase_23 AC 72 ms
92,004 KB
testcase_24 AC 75 ms
97,028 KB
testcase_25 AC 69 ms
90,280 KB
testcase_26 AC 42 ms
58,852 KB
testcase_27 AC 48 ms
66,652 KB
testcase_28 AC 46 ms
63,792 KB
testcase_29 AC 51 ms
68,120 KB
testcase_30 AC 69 ms
89,672 KB
testcase_31 AC 51 ms
69,908 KB
testcase_32 AC 85 ms
105,544 KB
testcase_33 AC 96 ms
102,588 KB
testcase_34 AC 73 ms
96,696 KB
testcase_35 AC 96 ms
102,516 KB
testcase_36 AC 72 ms
97,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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