結果

問題 No.641 Team Contest Estimation
ユーザー finefine
提出日時 2018-01-27 23:38:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,556 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,628 KB
最終ジャッジ日時 2024-06-09 05:38:10
合計ジャッジ時間 7,273 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 1,535 ms
19,628 KB
testcase_06 AC 1,556 ms
19,500 KB
testcase_07 AC 1,543 ms
19,504 KB
testcase_08 AC 1,544 ms
19,504 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 1000000009
n, k = map(int, input().strip().split())
a = map(int, input().strip().split())
if k == 0:
    print(0)
    print(0)
else:
    ans1 = n * (pow(2, k, MOD) + MOD - 1) * pow(2, k - 1, MOD) % MOD
    print(ans1)
    cnt = [0 for i in range(k)]
    for x in a:
        for i in range(k):
            if (x & (1 << i)) == 0:
                cnt[i] += 1
    
    ans2 = 0
    for i in range(k):
        ans2 = (ans2 + (cnt[i] * cnt[i] + (n - cnt[i]) * (n - cnt[i])) * pow(2, i * 2, MOD)) % MOD
    ans2 = ans2 * 2 % MOD
    
    for i in range(k):
        for j in range(k):
            if i == j:
                continue 
            ans2 = (ans2 + n * n * pow(2, i + j, MOD)) % MOD
    ans2 = ans2 * pow(2, 2 * (k - 1)) % MOD
    ans2 = (ans2 + MOD - ans1 * ans1 % MOD) % MOD
    print(ans2)
0