結果
問題 | No.1072 A Nice XOR Pair |
ユーザー | uw_yu1rabbit |
提出日時 | 2020-08-18 11:37:16 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 289 bytes |
コンパイル時間 | 263 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 27,904 KB |
最終ジャッジ日時 | 2024-10-12 02:35:04 |
合計ジャッジ時間 | 4,008 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,752 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
ソースコード
def main(): n,x = map(int,input().split()) a = [int(input()) for i in range(n)] b = [] c = [0 for i in range(n + 1)] for i in range(n): b.append(a[i] ^ x) c[a[i]] += 1 cnt = 0 for i in range(n): cnt += c[a[i]] print(cnt // 2) main()