結果

問題 No.2977 Kth Xor Pair
ユーザー nikoro256nikoro256
提出日時 2024-12-03 02:08:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,450 ms / 3,000 ms
コード長 542 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 298,620 KB
最終ジャッジ日時 2024-12-03 02:08:40
合計ジャッジ時間 30,000 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,376 KB
testcase_01 AC 44 ms
53,888 KB
testcase_02 AC 68 ms
70,144 KB
testcase_03 AC 66 ms
70,400 KB
testcase_04 AC 67 ms
70,400 KB
testcase_05 AC 72 ms
71,424 KB
testcase_06 AC 69 ms
71,168 KB
testcase_07 AC 853 ms
260,880 KB
testcase_08 AC 1,396 ms
273,328 KB
testcase_09 AC 1,281 ms
262,788 KB
testcase_10 AC 1,337 ms
264,664 KB
testcase_11 AC 1,327 ms
263,352 KB
testcase_12 AC 1,258 ms
264,068 KB
testcase_13 AC 1,407 ms
275,576 KB
testcase_14 AC 855 ms
260,612 KB
testcase_15 AC 1,184 ms
262,536 KB
testcase_16 AC 1,450 ms
298,488 KB
testcase_17 AC 1,429 ms
287,076 KB
testcase_18 AC 1,427 ms
298,368 KB
testcase_19 AC 1,429 ms
286,500 KB
testcase_20 AC 1,436 ms
287,084 KB
testcase_21 AC 1,426 ms
298,348 KB
testcase_22 AC 1,014 ms
260,452 KB
testcase_23 AC 1,036 ms
260,580 KB
testcase_24 AC 1,019 ms
260,200 KB
testcase_25 AC 1,447 ms
298,620 KB
testcase_26 AC 1,039 ms
260,208 KB
testcase_27 AC 287 ms
104,080 KB
testcase_28 AC 308 ms
118,288 KB
testcase_29 AC 305 ms
116,780 KB
testcase_30 AC 320 ms
108,688 KB
testcase_31 AC 308 ms
111,400 KB
testcase_32 AC 224 ms
99,584 KB
testcase_33 AC 232 ms
99,584 KB
testcase_34 AC 229 ms
99,712 KB
testcase_35 AC 253 ms
99,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,K=map(int,input().split())
K-=1
A=list(map(int,input().split()))
exp2=[2**i for i in range(35)]
left_sum=0
left=0
ans=0
for i in range(29,-1,-1):
    left+=exp2[i]
    dic=defaultdict(int)
    for j in range(N):
        dic[A[j]&(left)]+=1
    tmp_sum=left_sum
    keys = list(dic.keys())
    for k in keys:
        if k==k^ans:
            tmp_sum+=dic[k]*(dic[k^ans]-1)
        else:
            tmp_sum+=dic[k]*(dic[k^ans])
    if tmp_sum<=K*2:
        ans+=exp2[i]
        left_sum=tmp_sum
print(ans)
0