26912023-01-18 21:51:02kristofIntervallumXOR kihíváspython3Wrong answer 35/100527ms12108 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)
SubtaskSumTestVerdictTimeMemory
subtask10/0
1Accepted17ms11316 KiB
subtask215/15
2Accepted24ms11572 KiB
subtask30/15
3Wrong answer389ms11420 KiB
subtask420/20
4Accepted17ms11832 KiB
subtask50/50
5Time limit exceeded527ms12108 KiB
6Time limit exceeded521ms11840 KiB