結果

問題 No.1299 Random Array Score
ユーザー yakeshibayakeshiba
提出日時 2021-06-08 22:06:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 1,762 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 107,244 KB
最終ジャッジ日時 2024-11-27 04:56:52
合計ジャッジ時間 6,097 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,748 KB
testcase_01 AC 33 ms
52,844 KB
testcase_02 AC 34 ms
52,172 KB
testcase_03 AC 87 ms
101,648 KB
testcase_04 AC 80 ms
107,244 KB
testcase_05 AC 67 ms
96,792 KB
testcase_06 AC 64 ms
92,864 KB
testcase_07 AC 64 ms
93,416 KB
testcase_08 AC 81 ms
107,044 KB
testcase_09 AC 38 ms
59,880 KB
testcase_10 AC 51 ms
76,916 KB
testcase_11 AC 40 ms
63,508 KB
testcase_12 AC 61 ms
89,128 KB
testcase_13 AC 76 ms
105,864 KB
testcase_14 AC 64 ms
89,520 KB
testcase_15 AC 69 ms
92,268 KB
testcase_16 AC 67 ms
92,508 KB
testcase_17 AC 41 ms
64,580 KB
testcase_18 AC 54 ms
80,652 KB
testcase_19 AC 57 ms
82,636 KB
testcase_20 AC 48 ms
71,528 KB
testcase_21 AC 38 ms
59,904 KB
testcase_22 AC 41 ms
65,616 KB
testcase_23 AC 64 ms
92,344 KB
testcase_24 AC 67 ms
96,216 KB
testcase_25 AC 63 ms
90,476 KB
testcase_26 AC 37 ms
58,620 KB
testcase_27 AC 42 ms
67,220 KB
testcase_28 AC 40 ms
64,060 KB
testcase_29 AC 45 ms
68,756 KB
testcase_30 AC 64 ms
89,000 KB
testcase_31 AC 46 ms
69,132 KB
testcase_32 AC 77 ms
105,416 KB
testcase_33 AC 88 ms
102,620 KB
testcase_34 AC 66 ms
96,584 KB
testcase_35 AC 87 ms
102,416 KB
testcase_36 AC 66 ms
96,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

n, k = map(int,input().split())
A = list(map(int,input().split()))

print(sum(A)*pow(2,k,mod)%mod)
0