結果
問題 | No.1072 A Nice XOR Pair |
ユーザー | 小野寺健 |
提出日時 | 2021-11-05 16:34:29 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 400 bytes |
コンパイル時間 | 227 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 23,680 KB |
最終ジャッジ日時 | 2024-11-06 07:12:20 |
合計ジャッジ時間 | 6,163 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 88 ms
12,160 KB |
testcase_01 | AC | 85 ms
12,160 KB |
testcase_02 | AC | 85 ms
12,160 KB |
testcase_03 | AC | 85 ms
12,160 KB |
testcase_04 | WA | - |
testcase_05 | AC | 88 ms
12,160 KB |
testcase_06 | AC | 95 ms
12,288 KB |
testcase_07 | AC | 1,332 ms
23,680 KB |
testcase_08 | AC | 219 ms
17,408 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 686 ms
19,584 KB |
testcase_12 | AC | 1,205 ms
23,168 KB |
コンパイルメッセージ
Syntax OK
ソースコード
N, X = gets.split(" ").map{|s| s.to_i} a = [] N.times { a << gets.to_i } a.sort! cnt = 0 a.uniq.each {|y| ymin = a.bsearch_index{|i| i >= y} ymax = a.bsearch_index{|i| i > y} ymax = N if not ymax ycnt = ymax - ymin z = y ^ X zmin = a.bsearch_index{|i| i >= z} next if not zmin zmax = a.bsearch_index{|i| i > z} zmax = N if not zmax zcnt = zmax - zmin cnt += ycnt * zcnt } puts cnt / 2