2549 | 2023-01-16 23:59:31 | kristof | IntervallumXOR kihívás | python3 | Time limit exceeded 35/100 | 600ms | 12020 KiB |
#spagetti
pow2 = [1 << i for i in range(40)][::-1]
N = int(input())
for i in range(N):
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
drop = xor
for index in range(40):
if pow2[index] ^ drop <= x:
# print(index, pow2[index])
drop ^= pow2[index]
print(xor, xor ^ drop)
Subtask | Sum | Test | Verdict | Time | Memory | ||
---|---|---|---|---|---|---|---|
subtask1 | 0/0 | ||||||
1 | Accepted | 18ms | 11424 KiB | ||||
subtask2 | 15/15 | ||||||
2 | Accepted | 32ms | 11664 KiB | ||||
subtask3 | 0/15 | ||||||
3 | Time limit exceeded | 600ms | 4460 KiB | ||||
subtask4 | 20/20 | ||||||
4 | Accepted | 17ms | 12020 KiB | ||||
subtask5 | 0/50 | ||||||
5 | Time limit exceeded | 600ms | 4744 KiB | ||||
6 | Time limit exceeded | 578ms | 5044 KiB |