結果

問題 No.2977 Kth Xor Pair
ユーザー 👑 p-adicp-adic
提出日時 2024-11-25 20:10:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 771 ms / 3,000 ms
コード長 255 bytes
コンパイル時間 1,614 ms
コンパイル使用メモリ 81,644 KB
実行使用メモリ 259,168 KB
最終ジャッジ日時 2024-11-30 23:35:10
合計ジャッジ時間 21,426 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,692 KB
testcase_01 AC 35 ms
53,612 KB
testcase_02 AC 54 ms
66,420 KB
testcase_03 AC 50 ms
66,744 KB
testcase_04 AC 51 ms
67,388 KB
testcase_05 AC 53 ms
67,704 KB
testcase_06 AC 51 ms
67,532 KB
testcase_07 AC 447 ms
161,332 KB
testcase_08 AC 724 ms
188,284 KB
testcase_09 AC 692 ms
204,408 KB
testcase_10 AC 695 ms
190,380 KB
testcase_11 AC 728 ms
213,236 KB
testcase_12 AC 688 ms
192,268 KB
testcase_13 AC 755 ms
205,420 KB
testcase_14 AC 437 ms
164,172 KB
testcase_15 AC 643 ms
183,836 KB
testcase_16 AC 745 ms
217,296 KB
testcase_17 AC 738 ms
216,944 KB
testcase_18 AC 747 ms
217,060 KB
testcase_19 AC 755 ms
217,108 KB
testcase_20 AC 752 ms
217,040 KB
testcase_21 AC 771 ms
253,048 KB
testcase_22 AC 743 ms
259,168 KB
testcase_23 AC 739 ms
259,024 KB
testcase_24 AC 736 ms
258,992 KB
testcase_25 AC 739 ms
217,212 KB
testcase_26 AC 743 ms
258,896 KB
testcase_27 AC 235 ms
103,256 KB
testcase_28 AC 242 ms
102,088 KB
testcase_29 AC 233 ms
101,956 KB
testcase_30 AC 234 ms
102,796 KB
testcase_31 AC 228 ms
103,256 KB
testcase_32 AC 193 ms
102,144 KB
testcase_33 AC 191 ms
102,024 KB
testcase_34 AC 187 ms
102,020 KB
testcase_35 AC 193 ms
102,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

J=lambda:map(int,input().split())
N,K=J()
A=list(J())
a=c=0
for d in range(29,-1,-1):
	a*=2;h={}
	for x in A:
		if x>>d in h:h[x>>d]+=1
		else:h[x>>d]=1
	s=c+sum((h[x]*h[x^a]if x^a in h else 0)if a else(h[x]-1)*h[x]for x in h)//2
	if s<K:a|=1;c=s
print(a)
0