結果

問題 No.1299 Random Array Score
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-30 12:44:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 107,592 KB
最終ジャッジ日時 2024-06-26 23:49:44
合計ジャッジ時間 4,986 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,612 KB
testcase_01 AC 38 ms
52,132 KB
testcase_02 AC 39 ms
53,296 KB
testcase_03 AC 93 ms
101,772 KB
testcase_04 AC 83 ms
107,308 KB
testcase_05 AC 71 ms
96,188 KB
testcase_06 AC 67 ms
92,168 KB
testcase_07 AC 67 ms
92,748 KB
testcase_08 AC 84 ms
107,592 KB
testcase_09 AC 40 ms
60,436 KB
testcase_10 AC 54 ms
77,028 KB
testcase_11 AC 42 ms
63,008 KB
testcase_12 AC 66 ms
89,696 KB
testcase_13 AC 79 ms
105,672 KB
testcase_14 AC 66 ms
90,536 KB
testcase_15 AC 67 ms
92,120 KB
testcase_16 AC 68 ms
93,032 KB
testcase_17 AC 44 ms
64,740 KB
testcase_18 AC 56 ms
79,280 KB
testcase_19 AC 60 ms
81,952 KB
testcase_20 AC 49 ms
71,680 KB
testcase_21 AC 39 ms
59,368 KB
testcase_22 AC 44 ms
65,824 KB
testcase_23 AC 67 ms
92,592 KB
testcase_24 AC 71 ms
96,744 KB
testcase_25 AC 66 ms
89,984 KB
testcase_26 AC 39 ms
58,508 KB
testcase_27 AC 45 ms
66,932 KB
testcase_28 AC 43 ms
63,696 KB
testcase_29 AC 46 ms
68,584 KB
testcase_30 AC 65 ms
89,096 KB
testcase_31 AC 49 ms
69,200 KB
testcase_32 AC 81 ms
105,552 KB
testcase_33 AC 92 ms
102,436 KB
testcase_34 AC 68 ms
97,008 KB
testcase_35 AC 93 ms
102,472 KB
testcase_36 AC 68 ms
96,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

0