結果
問題 | No.1072 A Nice XOR Pair |
ユーザー | convexineq |
提出日時 | 2020-06-05 21:26:30 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 321 bytes |
コンパイル時間 | 345 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 38,352 KB |
最終ジャッジ日時 | 2024-05-09 19:56:05 |
合計ジャッジ時間 | 2,544 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,624 KB |
testcase_01 | AC | 31 ms
10,624 KB |
testcase_02 | AC | 28 ms
10,496 KB |
testcase_03 | AC | 28 ms
10,624 KB |
testcase_04 | AC | 29 ms
10,624 KB |
testcase_05 | WA | - |
testcase_06 | AC | 31 ms
11,136 KB |
testcase_07 | AC | 257 ms
38,352 KB |
testcase_08 | WA | - |
testcase_09 | AC | 226 ms
32,792 KB |
testcase_10 | AC | 218 ms
32,660 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
# coding: utf-8 # Your code here! import sys read = sys.stdin.read readline = sys.stdin.readline #n,k,x,y *a = map(int,read().split()) n,x,*a = map(int,read().split()) d = {} for i in a: if i in d: d[i] += 1 else: d[i] = 1 ans = 0 for i in a: if x^i in d: ans += d[i] if x==0: ans -= n print(ans//2)