Submission #3311114


Source Code Expand

n = gets.to_i
x = 0
bxor = Array.new(30,0)
ans = 0
n.times do
  a = gets.to_i
  x ^= a
  a ^= a-1
  30.downto(0) do |i|
    if a[i] == 1
      bxor[i] = 1
      break
    end
  end
end

29.downto(0) do |i|
  if x[i] == 1
    if bxor[i] == 1
      x ^= (1 << i+1)-1
      ans += 1
    else
      ans = -1
      break
    end
  end
end
p ans

Submission Info

Submission Time
Task C - Cheating Nim
User koikotya
Language Ruby (2.3.3)
Score 500
Code Size 366 Byte
Status AC
Exec Time 235 ms
Memory 2044 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 500 / 500
Status
AC × 2
AC × 26
Set Name Test Cases
Sample example0.txt, example1.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt, 021.txt, 022.txt, 023.txt, example0.txt, example1.txt
Case Name Status Exec Time Memory
000.txt AC 7 ms 1788 KB
001.txt AC 7 ms 1788 KB
002.txt AC 235 ms 2044 KB
003.txt AC 175 ms 2044 KB
004.txt AC 147 ms 2044 KB
005.txt AC 92 ms 2044 KB
006.txt AC 193 ms 2044 KB
007.txt AC 194 ms 2044 KB
008.txt AC 192 ms 2044 KB
009.txt AC 198 ms 2044 KB
010.txt AC 195 ms 2044 KB
011.txt AC 198 ms 2044 KB
012.txt AC 195 ms 2044 KB
013.txt AC 196 ms 2044 KB
014.txt AC 196 ms 2044 KB
015.txt AC 207 ms 2044 KB
016.txt AC 194 ms 2044 KB
017.txt AC 194 ms 2044 KB
018.txt AC 203 ms 2044 KB
019.txt AC 194 ms 2044 KB
020.txt AC 190 ms 2044 KB
021.txt AC 26 ms 2044 KB
022.txt AC 25 ms 2044 KB
023.txt AC 147 ms 2044 KB
example0.txt AC 7 ms 1788 KB
example1.txt AC 7 ms 1788 KB