2691 | 2023-01-18 21:51:02 | kristof | IntervallumXOR kihívás | python3 | Wrong answer 35/100 | 527ms | 12108 KiB |
N = int(input())
for i in range(N) :
if i > 60000 :
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 = x
while x != 0 :
x >>= 1
drop |= x
print(xor, drop)
Subtask | Sum | Test | Verdict | Time | Memory | ||
---|---|---|---|---|---|---|---|
subtask1 | 0/0 | ||||||
1 | Accepted | 17ms | 11316 KiB | ||||
subtask2 | 15/15 | ||||||
2 | Accepted | 24ms | 11572 KiB | ||||
subtask3 | 0/15 | ||||||
3 | Wrong answer | 389ms | 11420 KiB | ||||
subtask4 | 20/20 | ||||||
4 | Accepted | 17ms | 11832 KiB | ||||
subtask5 | 0/50 | ||||||
5 | Time limit exceeded | 527ms | 12108 KiB | ||||
6 | Time limit exceeded | 521ms | 11840 KiB |