結果

問題 No.641 Team Contest Estimation
ユーザー maspymaspy
提出日時 2020-04-09 22:43:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 647 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,868 KB
最終ジャッジ日時 2024-09-26 13:46:50
合計ジャッジ時間 9,102 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
43,944 KB
testcase_01 AC 547 ms
43,952 KB
testcase_02 AC 538 ms
44,332 KB
testcase_03 AC 548 ms
44,076 KB
testcase_04 AC 543 ms
44,204 KB
testcase_05 AC 647 ms
50,728 KB
testcase_06 AC 588 ms
50,464 KB
testcase_07 AC 612 ms
50,868 KB
testcase_08 AC 601 ms
50,320 KB
testcase_09 AC 551 ms
44,204 KB
testcase_10 AC 543 ms
44,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

N, K = map(int, readline().split())
A = np.array(read().split(), np.int64)

if K == 0:
    print(0)
    print(0)
    exit()

mu = ((1 << K) - 1) * N << K - 1
sigma = 0
for i in range(K):
    x = int(np.sum((A >> i) & 1))
    y = N - x
    sigma += (1 << i + i) * (x - y) ** 2

sigma <<= K + K - 2

MOD = 10 ** 9 + 9
print(mu % MOD)
print(sigma % MOD)
0