結果

問題 No.1299 Random Array Score
ユーザー NoaSaberNoaSaber
提出日時 2021-04-30 21:08:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 106 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 107,388 KB
最終ジャッジ日時 2024-07-18 21:47:25
合計ジャッジ時間 4,869 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 87 ms
101,560 KB
testcase_04 AC 80 ms
107,112 KB
testcase_05 AC 68 ms
95,872 KB
testcase_06 AC 66 ms
91,648 KB
testcase_07 AC 68 ms
92,416 KB
testcase_08 AC 80 ms
107,388 KB
testcase_09 AC 38 ms
58,880 KB
testcase_10 AC 53 ms
76,544 KB
testcase_11 AC 43 ms
62,592 KB
testcase_12 AC 70 ms
88,320 KB
testcase_13 AC 77 ms
105,472 KB
testcase_14 AC 64 ms
88,832 KB
testcase_15 AC 67 ms
91,776 KB
testcase_16 AC 65 ms
91,648 KB
testcase_17 AC 43 ms
64,000 KB
testcase_18 AC 55 ms
78,976 KB
testcase_19 AC 56 ms
81,792 KB
testcase_20 AC 49 ms
71,168 KB
testcase_21 AC 39 ms
58,624 KB
testcase_22 AC 44 ms
65,152 KB
testcase_23 AC 65 ms
91,264 KB
testcase_24 AC 69 ms
95,872 KB
testcase_25 AC 62 ms
88,832 KB
testcase_26 AC 42 ms
58,112 KB
testcase_27 AC 46 ms
66,304 KB
testcase_28 AC 46 ms
63,744 KB
testcase_29 AC 48 ms
68,224 KB
testcase_30 AC 67 ms
88,064 KB
testcase_31 AC 49 ms
68,352 KB
testcase_32 AC 81 ms
105,472 KB
testcase_33 AC 94 ms
102,372 KB
testcase_34 AC 68 ms
95,744 KB
testcase_35 AC 94 ms
102,528 KB
testcase_36 AC 72 ms
95,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
mod=998244353
print(sum(A)*pow(2,K,mod)%mod)
0