結果

問題 No.1299 Random Array Score
ユーザー ayaoniayaoni
提出日時 2020-11-27 23:36:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 107,888 KB
最終ジャッジ日時 2024-09-13 01:12:04
合計ジャッジ時間 3,885 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,804 KB
testcase_01 AC 36 ms
53,240 KB
testcase_02 AC 36 ms
52,760 KB
testcase_03 AC 92 ms
101,892 KB
testcase_04 AC 89 ms
107,432 KB
testcase_05 AC 73 ms
97,128 KB
testcase_06 AC 69 ms
92,556 KB
testcase_07 AC 71 ms
93,532 KB
testcase_08 AC 85 ms
107,888 KB
testcase_09 AC 39 ms
60,488 KB
testcase_10 AC 55 ms
77,716 KB
testcase_11 AC 42 ms
64,128 KB
testcase_12 AC 66 ms
89,160 KB
testcase_13 AC 82 ms
106,308 KB
testcase_14 AC 67 ms
90,096 KB
testcase_15 AC 69 ms
93,516 KB
testcase_16 AC 69 ms
92,156 KB
testcase_17 AC 45 ms
65,652 KB
testcase_18 AC 57 ms
80,044 KB
testcase_19 AC 61 ms
82,980 KB
testcase_20 AC 50 ms
71,564 KB
testcase_21 AC 39 ms
59,440 KB
testcase_22 AC 46 ms
65,932 KB
testcase_23 AC 69 ms
92,196 KB
testcase_24 AC 73 ms
96,512 KB
testcase_25 AC 67 ms
89,728 KB
testcase_26 AC 39 ms
59,232 KB
testcase_27 AC 44 ms
66,672 KB
testcase_28 AC 44 ms
63,704 KB
testcase_29 AC 47 ms
68,280 KB
testcase_30 AC 65 ms
88,328 KB
testcase_31 AC 48 ms
69,296 KB
testcase_32 AC 83 ms
105,864 KB
testcase_33 AC 95 ms
102,168 KB
testcase_34 AC 71 ms
96,576 KB
testcase_35 AC 95 ms
102,192 KB
testcase_36 AC 71 ms
97,036 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

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