結果

問題 No.1299 Random Array Score
ユーザー ayaoniayaoni
提出日時 2020-11-27 21:52:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 107,460 KB
最終ジャッジ日時 2024-07-26 12:21:22
合計ジャッジ時間 4,258 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,496 KB
testcase_01 AC 38 ms
52,924 KB
testcase_02 AC 38 ms
53,108 KB
testcase_03 AC 98 ms
101,952 KB
testcase_04 AC 91 ms
107,460 KB
testcase_05 AC 76 ms
96,884 KB
testcase_06 AC 71 ms
92,280 KB
testcase_07 AC 72 ms
93,372 KB
testcase_08 AC 91 ms
107,408 KB
testcase_09 AC 41 ms
59,708 KB
testcase_10 AC 58 ms
76,952 KB
testcase_11 AC 44 ms
64,048 KB
testcase_12 AC 69 ms
88,744 KB
testcase_13 AC 85 ms
106,232 KB
testcase_14 AC 70 ms
91,324 KB
testcase_15 AC 71 ms
92,740 KB
testcase_16 AC 72 ms
91,924 KB
testcase_17 AC 47 ms
65,520 KB
testcase_18 AC 61 ms
79,792 KB
testcase_19 AC 63 ms
82,724 KB
testcase_20 AC 53 ms
71,376 KB
testcase_21 AC 43 ms
59,256 KB
testcase_22 AC 48 ms
65,868 KB
testcase_23 AC 72 ms
91,892 KB
testcase_24 AC 77 ms
97,864 KB
testcase_25 AC 70 ms
90,504 KB
testcase_26 AC 42 ms
60,344 KB
testcase_27 AC 48 ms
66,620 KB
testcase_28 AC 47 ms
64,660 KB
testcase_29 AC 50 ms
68,652 KB
testcase_30 AC 68 ms
89,200 KB
testcase_31 AC 51 ms
69,592 KB
testcase_32 AC 86 ms
105,840 KB
testcase_33 AC 100 ms
102,052 KB
testcase_34 AC 73 ms
96,032 KB
testcase_35 AC 99 ms
102,144 KB
testcase_36 AC 75 ms
96,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))


N,K = MI()
A = LI()
mod = 998244353

S = sum(A)
S %= mod
ans = S*pow(2,K,mod)
ans %= mod
print(ans)
0