結果

問題 No.1456 Range Xor
ユーザー simansiman
提出日時 2021-05-09 11:52:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 25,088 KB
最終ジャッジ日時 2024-09-18 18:06:01
合計ジャッジ時間 7,940 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 95 ms
12,288 KB
testcase_02 AC 91 ms
12,160 KB
testcase_03 AC 158 ms
24,960 KB
testcase_04 AC 157 ms
24,960 KB
testcase_05 AC 160 ms
25,088 KB
testcase_06 AC 158 ms
24,704 KB
testcase_07 AC 173 ms
24,704 KB
testcase_08 AC 162 ms
24,960 KB
testcase_09 AC 160 ms
24,832 KB
testcase_10 AC 156 ms
24,832 KB
testcase_11 AC 110 ms
13,952 KB
testcase_12 AC 98 ms
12,672 KB
testcase_13 AC 118 ms
15,616 KB
testcase_14 AC 111 ms
15,488 KB
testcase_15 AC 148 ms
22,784 KB
testcase_16 AC 143 ms
23,168 KB
testcase_17 AC 125 ms
17,152 KB
testcase_18 AC 109 ms
15,360 KB
testcase_19 AC 132 ms
19,328 KB
testcase_20 AC 146 ms
23,040 KB
testcase_21 AC 135 ms
19,456 KB
testcase_22 AC 137 ms
19,328 KB
testcase_23 AC 114 ms
16,512 KB
testcase_24 AC 104 ms
13,440 KB
testcase_25 AC 112 ms
14,976 KB
testcase_26 AC 130 ms
17,664 KB
testcase_27 AC 141 ms
21,760 KB
testcase_28 AC 111 ms
14,592 KB
testcase_29 AC 165 ms
23,424 KB
testcase_30 AC 155 ms
24,064 KB
testcase_31 AC 108 ms
14,720 KB
testcase_32 AC 105 ms
14,336 KB
testcase_33 AC 121 ms
17,536 KB
testcase_34 AC 157 ms
23,936 KB
testcase_35 AC 126 ms
17,792 KB
testcase_36 AC 158 ms
24,448 KB
testcase_37 AC 165 ms
23,680 KB
testcase_38 AC 104 ms
13,696 KB
testcase_39 AC 143 ms
22,272 KB
testcase_40 AC 153 ms
22,528 KB
testcase_41 AC 91 ms
12,160 KB
testcase_42 AC 98 ms
13,056 KB
testcase_43 AC 86 ms
12,032 KB
testcase_44 AC 90 ms
12,032 KB
testcase_45 AC 93 ms
12,288 KB
testcase_46 AC 93 ms
12,032 KB
testcase_47 AC 95 ms
12,160 KB
testcase_48 AC 92 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)

hash = Hash.new
v = K

A.each do |a|
  v ^= a
  hash[v] = true
end

cur = 0

A.each do |a|
  cur ^= a

  if hash[cur] || cur == K
    puts 'Yes'
    exit
  end
end

puts 'No'
0