結果

問題 No.1299 Random Array Score
ユーザー kohei2019kohei2019
提出日時 2020-12-12 23:18:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,284 KB
最終ジャッジ日時 2024-09-19 22:32:34
合計ジャッジ時間 3,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 102 ms
32,476 KB
testcase_04 AC 100 ms
31,816 KB
testcase_05 AC 83 ms
27,392 KB
testcase_06 AC 77 ms
25,460 KB
testcase_07 AC 81 ms
25,896 KB
testcase_08 AC 100 ms
31,608 KB
testcase_09 AC 31 ms
11,264 KB
testcase_10 AC 55 ms
19,016 KB
testcase_11 AC 36 ms
12,888 KB
testcase_12 AC 77 ms
24,400 KB
testcase_13 AC 101 ms
31,256 KB
testcase_14 AC 79 ms
24,808 KB
testcase_15 AC 78 ms
25,308 KB
testcase_16 AC 77 ms
25,432 KB
testcase_17 AC 39 ms
13,364 KB
testcase_18 AC 60 ms
19,832 KB
testcase_19 AC 64 ms
21,324 KB
testcase_20 AC 48 ms
16,220 KB
testcase_21 AC 30 ms
11,008 KB
testcase_22 AC 39 ms
13,868 KB
testcase_23 AC 75 ms
25,184 KB
testcase_24 AC 85 ms
26,940 KB
testcase_25 AC 76 ms
24,772 KB
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 42 ms
14,460 KB
testcase_28 AC 37 ms
13,184 KB
testcase_29 AC 45 ms
15,088 KB
testcase_30 AC 73 ms
24,276 KB
testcase_31 AC 45 ms
15,464 KB
testcase_32 AC 97 ms
31,620 KB
testcase_33 AC 103 ms
33,152 KB
testcase_34 AC 70 ms
14,628 KB
testcase_35 AC 104 ms
33,284 KB
testcase_36 AC 72 ms
14,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
N,K =map(int,input().split())
lsA = list(map(int,input().split()))
#1回目で増える期待値,∑1/N*lsA[i]*N=sum(lsA)
mod = 998244353
sumA = sum(lsA)
#1,2,4,8倍.....
#modpow
def modPow(a,n,mod):#繰り返し二乗法 a**n % mod
    if n==0:
        return 1
    if n==1:
        return a%mod
    if n % 2 == 1:
        return (a*modPow(a,n-1,mod)) % mod
    t = modPow(a,n//2,mod)
    return (t*t)%mod
ans = sumA*modPow(2,K,mod)
ans %= mod
print(ans)
0