2606 | 2023-01-17 23:18:24 | kristof | IntervallumXOR kihívás | python3 | Wrong answer 35/100 | 490ms | 12656 KiB |
N = int(input())
for i in range(N) :
if i > 50000 :
exit(0)
x = int(input())
if x%4 == 0 : xor = x
if x%2 :
if x%4 == 1: xor = 1
else: xor = 0
drop = x
else :
if x%4 == 2: xor = x + 1
else: xor = x
drop = 0
while x > 0 :
x >>= 1
drop = (drop << 1) + 1
print(xor, drop, flush=1)
Subtask | Sum | Test | Verdict | Time | Memory | ||
---|---|---|---|---|---|---|---|
subtask1 | 0/0 | ||||||
1 | Accepted | 17ms | 11276 KiB | ||||
subtask2 | 15/15 | ||||||
2 | Accepted | 23ms | 11716 KiB | ||||
subtask3 | 0/15 | ||||||
3 | Wrong answer | 356ms | 12212 KiB | ||||
subtask4 | 20/20 | ||||||
4 | Accepted | 17ms | 12128 KiB | ||||
subtask5 | 0/50 | ||||||
5 | Wrong answer | 460ms | 12656 KiB | ||||
6 | Wrong answer | 490ms | 12476 KiB |