結果

問題 No.1299 Random Array Score
ユーザー buey_tbuey_t
提出日時 2023-04-01 12:22:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 1,156 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 122,364 KB
最終ジャッジ日時 2024-09-24 10:37:03
合計ジャッジ時間 8,617 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
85,036 KB
testcase_01 AC 119 ms
85,192 KB
testcase_02 AC 129 ms
85,200 KB
testcase_03 AC 174 ms
121,792 KB
testcase_04 AC 172 ms
121,504 KB
testcase_05 AC 166 ms
114,016 KB
testcase_06 AC 160 ms
110,900 KB
testcase_07 AC 162 ms
110,964 KB
testcase_08 AC 169 ms
121,156 KB
testcase_09 AC 144 ms
90,024 KB
testcase_10 AC 147 ms
100,620 KB
testcase_11 AC 137 ms
90,104 KB
testcase_12 AC 156 ms
108,516 KB
testcase_13 AC 173 ms
121,584 KB
testcase_14 AC 159 ms
108,556 KB
testcase_15 AC 159 ms
110,852 KB
testcase_16 AC 158 ms
111,152 KB
testcase_17 AC 138 ms
91,308 KB
testcase_18 AC 151 ms
102,132 KB
testcase_19 AC 155 ms
103,884 KB
testcase_20 AC 143 ms
95,812 KB
testcase_21 AC 133 ms
89,844 KB
testcase_22 AC 136 ms
92,280 KB
testcase_23 AC 154 ms
110,936 KB
testcase_24 AC 160 ms
113,976 KB
testcase_25 AC 155 ms
108,852 KB
testcase_26 AC 134 ms
89,920 KB
testcase_27 AC 138 ms
92,844 KB
testcase_28 AC 136 ms
90,656 KB
testcase_29 AC 138 ms
94,248 KB
testcase_30 AC 161 ms
108,432 KB
testcase_31 AC 140 ms
94,380 KB
testcase_32 AC 173 ms
121,204 KB
testcase_33 AC 189 ms
122,364 KB
testcase_34 AC 160 ms
117,284 KB
testcase_35 AC 174 ms
122,328 KB
testcase_36 AC 161 ms
116,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
    from heapq import heapify, heappop, heappush
    from bisect import bisect_left, bisect_right
    from copy import deepcopy
    import copy
    import random
    from collections import deque,Counter,defaultdict
    from itertools import permutations,combinations
    from decimal import Decimal,ROUND_HALF_UP
    #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
    from functools import lru_cache, reduce
    #@lru_cache(maxsize=None)
    from operator import add,sub,mul,xor,and_,or_,itemgetter
    INF = 10**18
    mod1 = 10**9+7
    mod2 = 998244353
    
    #DecimalならPython
    #再帰ならPython!!!!!!!!!!!!!!!!!!!!!!!!!!
    
    
    '''
    
    
    
    '''
    
    N,K = map(int, input().split())
    A = list(map(int, input().split()))
    
    print(pow(2,K,mod2)*sum(A)%mod2)
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
if __name__ == '__main__':
    main()
0