2689 | 2023-01-18 21:44:27 | kristof | IntervallumXOR kihívás | python3 | Wrong answer 35/100 | 528ms | 12124 KiB |
N = int(input())
for i in range(N) :
if i > 60000 :
exit(0)
x = int(input())
drop = x
if x%2 == 0:
if x%4 == 0 : xor = x
else:
xor = x + 1
while x != 0 :
x >>= 1
drop |= x
else:
if x%4 == 1: xor = 1
else :
xor = 0
print(xor, drop)
Subtask | Sum | Test | Verdict | Time | Memory | ||
---|---|---|---|---|---|---|---|
subtask1 | 0/0 | ||||||
1 | Accepted | 17ms | 11084 KiB | ||||
subtask2 | 15/15 | ||||||
2 | Accepted | 21ms | 11460 KiB | ||||
subtask3 | 0/15 | ||||||
3 | Wrong answer | 407ms | 11836 KiB | ||||
subtask4 | 20/20 | ||||||
4 | Accepted | 17ms | 12124 KiB | ||||
subtask5 | 0/50 | ||||||
5 | Time limit exceeded | 509ms | 11924 KiB | ||||
6 | Time limit exceeded | 528ms | 12096 KiB |