結果

問題 No.1456 Range Xor
ユーザー yuruhiyayuruhiya
提出日時 2021-03-31 21:27:19
言語 Crystal
(1.11.2)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 13,867 ms
コンパイル使用メモリ 295,596 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-05-09 05:23:12
合計ジャッジ時間 16,395 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 27 ms
14,080 KB
testcase_04 AC 26 ms
14,208 KB
testcase_05 AC 27 ms
14,080 KB
testcase_06 AC 29 ms
14,208 KB
testcase_07 AC 29 ms
14,080 KB
testcase_08 AC 28 ms
14,080 KB
testcase_09 AC 26 ms
14,208 KB
testcase_10 AC 28 ms
14,080 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 11 ms
5,888 KB
testcase_14 AC 9 ms
6,016 KB
testcase_15 AC 23 ms
11,392 KB
testcase_16 AC 23 ms
12,544 KB
testcase_17 AC 14 ms
7,424 KB
testcase_18 AC 8 ms
5,760 KB
testcase_19 AC 16 ms
8,704 KB
testcase_20 AC 23 ms
12,544 KB
testcase_21 AC 15 ms
8,704 KB
testcase_22 AC 17 ms
8,832 KB
testcase_23 AC 11 ms
6,784 KB
testcase_24 AC 5 ms
5,376 KB
testcase_25 AC 9 ms
5,632 KB
testcase_26 AC 16 ms
8,448 KB
testcase_27 AC 21 ms
12,032 KB
testcase_28 AC 8 ms
5,504 KB
testcase_29 AC 27 ms
11,648 KB
testcase_30 AC 25 ms
13,044 KB
testcase_31 AC 8 ms
5,504 KB
testcase_32 AC 7 ms
5,376 KB
testcase_33 AC 12 ms
6,912 KB
testcase_34 AC 24 ms
12,672 KB
testcase_35 AC 14 ms
8,576 KB
testcase_36 AC 25 ms
11,776 KB
testcase_37 AC 25 ms
11,392 KB
testcase_38 AC 6 ms
5,376 KB
testcase_39 AC 23 ms
12,416 KB
testcase_40 AC 23 ms
12,416 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 5 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 1 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C
  fun strtoll(s : UInt8*, p : UInt8**, b : Int32) : Int64
end

class String
  def to_i64
    C.strtoll(self, nil, 10)
  end
end

n, k = read_line.split.map(&.to_i)
a = read_line.split.map(&.to_i64)
b = [0i64]
(0...n).each { |i| b << (b[-1] ^ a[i]) }
c = Hash(Int64, Int32).new(0)
b.each { |x| c[x] += 1 }
puts c.any? { |key, v|
  key2 = key ^ k
  c.has_key?(key2) && (key != key2 || c[key2] >= 2)
} ? "Yes" : "No"
0