26872023-01-18 21:39:32kristofIntervallumXOR kihíváspython3Wrong answer 35/100391ms12208 KiB
N = int(input())
for i in range(N) :
    if i > 40000 :
        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
    drop = x
    if x%2 == 0:
        while x != 0 :
            x >>= 1
            drop |= x
    print(xor, drop)
SubtaskSumTestVerdictTimeMemory
subtask10/0
1Accepted17ms11084 KiB
subtask215/15
2Accepted24ms11672 KiB
subtask30/15
3Wrong answer263ms11916 KiB
subtask420/20
4Accepted17ms11520 KiB
subtask50/50
5Wrong answer391ms12208 KiB
6Wrong answer351ms12180 KiB