2678 | 2023-01-18 21:14:59 | kristof | IntervallumXOR kihívás | python3 | Wrong answer 35/100 | 331ms | 12652 KiB |
N = int(input())
for i in range(N) :
if i > 40000 :
exit(0)
x = int(input())
if x%4 == 0 : xor = x
if x%4 == 1 : xor = 1
if x%4 == 2 : xor = x + 1
if x%4 == 3 : xor = 0
if x%2 :
drop = x
else :
drop = 0x3fffffff
m = 0x20000000
for index in range(30) :
if x & m :
break
else :
drop ^= m
m >>= 1
print(xor, drop)
Subtask | Sum | Test | Verdict | Time | Memory | ||
---|---|---|---|---|---|---|---|
subtask1 | 0/0 | ||||||
1 | Accepted | 17ms | 11336 KiB | ||||
subtask2 | 15/15 | ||||||
2 | Accepted | 26ms | 11388 KiB | ||||
subtask3 | 0/15 | ||||||
3 | Wrong answer | 331ms | 12132 KiB | ||||
subtask4 | 20/20 | ||||||
4 | Accepted | 17ms | 12396 KiB | ||||
subtask5 | 0/50 | ||||||
5 | Wrong answer | 234ms | 12528 KiB | ||||
6 | Wrong answer | 224ms | 12652 KiB |