結果

問題 No.1456 Range Xor
ユーザー simansiman
提出日時 2021-05-09 11:51:22
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 24,832 KB
最終ジャッジ日時 2024-09-18 18:04:32
合計ジャッジ時間 9,107 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,032 KB
testcase_01 AC 92 ms
11,904 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 162 ms
24,832 KB
testcase_04 AC 157 ms
24,576 KB
testcase_05 AC 158 ms
24,576 KB
testcase_06 AC 156 ms
24,576 KB
testcase_07 AC 168 ms
24,832 KB
testcase_08 AC 162 ms
24,832 KB
testcase_09 AC 160 ms
24,576 KB
testcase_10 AC 156 ms
24,832 KB
testcase_11 AC 104 ms
14,080 KB
testcase_12 AC 95 ms
12,416 KB
testcase_13 AC 115 ms
15,232 KB
testcase_14 AC 116 ms
15,360 KB
testcase_15 AC 147 ms
22,784 KB
testcase_16 AC 145 ms
22,656 KB
testcase_17 AC 125 ms
17,152 KB
testcase_18 AC 112 ms
15,104 KB
testcase_19 AC 134 ms
19,456 KB
testcase_20 AC 143 ms
22,656 KB
testcase_21 AC 134 ms
19,456 KB
testcase_22 AC 135 ms
19,200 KB
testcase_23 AC 116 ms
16,384 KB
testcase_24 AC 101 ms
13,184 KB
testcase_25 AC 112 ms
14,720 KB
testcase_26 AC 131 ms
17,920 KB
testcase_27 AC 144 ms
21,632 KB
testcase_28 AC 109 ms
14,592 KB
testcase_29 AC 169 ms
24,192 KB
testcase_30 AC 158 ms
23,808 KB
testcase_31 AC 108 ms
14,336 KB
testcase_32 AC 106 ms
14,208 KB
testcase_33 AC 120 ms
17,280 KB
testcase_34 AC 157 ms
23,680 KB
testcase_35 AC 126 ms
17,664 KB
testcase_36 AC 158 ms
24,320 KB
testcase_37 AC 162 ms
23,552 KB
testcase_38 AC 102 ms
13,568 KB
testcase_39 AC 141 ms
21,888 KB
testcase_40 AC 155 ms
21,760 KB
testcase_41 AC 90 ms
11,904 KB
testcase_42 AC 98 ms
13,056 KB
testcase_43 WA -
testcase_44 AC 90 ms
11,904 KB
testcase_45 AC 91 ms
12,032 KB
testcase_46 AC 89 ms
11,904 KB
testcase_47 WA -
testcase_48 AC 93 ms
11,904 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]
    puts 'Yes'
    exit
  end
end

puts 'No'
0