25502023-01-17 00:09:33kristofIntervallumXOR kihíváspython3Időlimit túllépés 35/100560ms11932 KiB
#spagetti

pow2 = [1 << i for i in range(30)][::-1]
N = int(input())
i = 0
while i < N:
    i += 1
    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(30):
        if pow2[index] ^ drop <= x:
#            print(index, pow2[index])
            drop ^= pow2[index]
    print(xor, xor ^ drop)
RészfeladatÖsszpontTesztVerdiktIdőMemória
subtask10/0
1Elfogadva17ms11472 KiB
subtask215/15
2Elfogadva29ms11852 KiB
subtask30/15
3Időlimit túllépés560ms4252 KiB
subtask420/20
4Elfogadva17ms11932 KiB
subtask50/50
5Időlimit túllépés559ms4796 KiB
6Időlimit túllépés556ms4968 KiB