26472023-01-18 00:23:55kristofIntervallumXOR kihíváspython3Wrong answer 15/100335ms12392 KiB
from sys import stdin, stdout
import sys
import os
#all = ""

N = 10004
drop_ary = [0 for i in range(N)]
xor_ary = [0 for i in range(N)]

N = int(input())
#xx = [int(stdin.readline()) for i in range(N)]
for i in range(N) :
    if i > 50000 :
        exit(0)
    x = int(input())
    if drop_ary[x] == 0:
        if x%4 == 0 : xor = x
        if x%2 :
            if x%4 == 1: xor = 1
            else: xor = 0
            drop = x
        else :
            if x%4 == 2: xor = x + 1
            else: xor = x
            drop = 0
            while x > 0 :
                x >>= 1
                drop = (drop << 1) + 1
        xor_ary[x] = xor
        drop_ary[x] = drop
    os.write(1, bytes(str(xor_ary[x]) + " " + str(drop_ary[x]) + "\n", 'ascii'))
#    print(xor, drop)
#sys.stdout.write(all)
#os.write(1, bytes(all, 'ascii'))
#print(17, 17)
SubtaskSumTestVerdictTimeMemory
subtask10/0
1Accepted18ms11812 KiB
subtask215/15
2Accepted25ms11732 KiB
subtask30/15
3Wrong answer335ms12252 KiB
subtask40/20
4Runtime error17ms12048 KiB
subtask50/50
5Runtime error17ms12392 KiB
6Runtime error17ms12244 KiB