結果

問題 No.1299 Random Array Score
ユーザー mkawa2mkawa2
提出日時 2020-11-27 21:43:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 1,054 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 29,788 KB
最終ジャッジ日時 2024-07-26 12:05:02
合計ジャッジ時間 4,066 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 33 ms
10,880 KB
testcase_03 AC 100 ms
29,604 KB
testcase_04 AC 96 ms
29,172 KB
testcase_05 AC 82 ms
25,020 KB
testcase_06 AC 76 ms
23,272 KB
testcase_07 AC 79 ms
24,076 KB
testcase_08 AC 97 ms
28,980 KB
testcase_09 AC 32 ms
11,520 KB
testcase_10 AC 57 ms
18,088 KB
testcase_11 AC 37 ms
12,544 KB
testcase_12 AC 75 ms
22,524 KB
testcase_13 AC 95 ms
28,548 KB
testcase_14 AC 75 ms
23,008 KB
testcase_15 AC 78 ms
23,336 KB
testcase_16 AC 78 ms
23,252 KB
testcase_17 AC 41 ms
13,192 KB
testcase_18 AC 62 ms
18,644 KB
testcase_19 AC 66 ms
19,904 KB
testcase_20 AC 49 ms
15,776 KB
testcase_21 AC 32 ms
11,264 KB
testcase_22 AC 41 ms
13,548 KB
testcase_23 AC 74 ms
23,156 KB
testcase_24 AC 83 ms
24,972 KB
testcase_25 AC 75 ms
22,984 KB
testcase_26 AC 31 ms
11,136 KB
testcase_27 AC 41 ms
14,032 KB
testcase_28 AC 38 ms
13,056 KB
testcase_29 AC 45 ms
14,760 KB
testcase_30 AC 73 ms
22,248 KB
testcase_31 AC 46 ms
14,948 KB
testcase_32 AC 96 ms
28,472 KB
testcase_33 AC 100 ms
29,788 KB
testcase_34 AC 70 ms
14,004 KB
testcase_35 AC 98 ms
29,744 KB
testcase_36 AC 68 ms
14,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# from operator import itemgetter
# from itertools import *
# from bisect import *
from collections import *
from heapq import *
import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def MI(): return map(int, sys.stdin.buffer.readline().split())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def MI1(): return map(int1, sys.stdin.buffer.readline().split())
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
def inval(ni, nj, h, w):
    if ni < 0 or ni >= h or nj < 0 or nj >= w: return True
    return False
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
inf = 10**16
# md = 10 ** 9 + 7
md = 998244353

n,k=MI()
aa=LI()
s=sum(aa)
ans=(s+s*(pow(2,k,md)-1))%md
print(ans)
0