結果

問題 No.1299 Random Array Score
ユーザー jensenjensen
提出日時 2021-01-04 16:19:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,588 KB
最終ジャッジ日時 2024-10-15 01:55:28
合計ジャッジ時間 8,408 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 213 ms
11,668 KB
testcase_03 AC 272 ms
32,588 KB
testcase_04 AC 308 ms
31,788 KB
testcase_05 AC 136 ms
26,976 KB
testcase_06 AC 286 ms
25,444 KB
testcase_07 AC 313 ms
26,012 KB
testcase_08 AC 121 ms
31,700 KB
testcase_09 AC 202 ms
12,200 KB
testcase_10 AC 280 ms
19,120 KB
testcase_11 AC 75 ms
12,996 KB
testcase_12 AC 117 ms
24,504 KB
testcase_13 AC 89 ms
31,356 KB
testcase_14 AC 118 ms
24,776 KB
testcase_15 AC 124 ms
25,152 KB
testcase_16 AC 115 ms
25,056 KB
testcase_17 AC 217 ms
14,488 KB
testcase_18 AC 141 ms
19,684 KB
testcase_19 AC 133 ms
21,048 KB
testcase_20 AC 156 ms
16,324 KB
testcase_21 AC 172 ms
11,900 KB
testcase_22 AC 89 ms
14,096 KB
testcase_23 AC 279 ms
25,068 KB
testcase_24 AC 108 ms
26,792 KB
testcase_25 AC 297 ms
24,744 KB
testcase_26 AC 53 ms
11,136 KB
testcase_27 AC 61 ms
14,308 KB
testcase_28 AC 118 ms
13,928 KB
testcase_29 AC 142 ms
15,196 KB
testcase_30 AC 188 ms
24,248 KB
testcase_31 AC 131 ms
15,436 KB
testcase_32 AC 221 ms
31,268 KB
testcase_33 AC 263 ms
32,548 KB
testcase_34 AC 226 ms
14,592 KB
testcase_35 AC 96 ms
32,420 KB
testcase_36 AC 66 ms
14,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

[n,k]=list(map(int,input().split()))
a=list(map(int,input().split()))
s=sum(a)

def mypow(a,b):
    p=b//10000
    q=b%10000
    return ((2**10000%998244353)**p%998244353)*(2**q)%998244353

print(s*mypow(2,k%998244352)%998244353)
0