結果

問題 No.641 Team Contest Estimation
ユーザー maspymaspy
提出日時 2020-04-09 22:42:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 438 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,752 KB
最終ジャッジ日時 2024-09-14 00:13:40
合計ジャッジ時間 9,620 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 524 ms
43,972 KB
testcase_01 AC 525 ms
43,844 KB
testcase_02 AC 528 ms
44,104 KB
testcase_03 RE -
testcase_04 AC 525 ms
43,844 KB
testcase_05 AC 650 ms
50,300 KB
testcase_06 AC 581 ms
50,356 KB
testcase_07 AC 578 ms
50,740 KB
testcase_08 AC 580 ms
50,752 KB
testcase_09 AC 537 ms
43,844 KB
testcase_10 AC 539 ms
44,104 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)

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