26272023-01-17 23:52:01kristofIntervallumXOR kihíváspython3Wrong answer 0/100319ms12144 KiB
from sys import stdin, stdout
import sys
import os
all = ""
N = int(input())
#xx = [int(stdin.readline()) for i in range(N)]
for i in range(N) :
    if i > 500000 :
        exit(0)
    x = int(input()) 
#    x = xx[i]
    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 = 2*x
#        while x > 0 :
#            x >>= 1
#            drop = (drop << 1) + 1
#    all = all + str(xor) + " " + str(drop) + "\n"
#    os.write(1, bytes(str(xor) + " " + str(drop) + "\n", 'ascii'))
#    sys.stdout.write(str(xor) + " " + str(drop) + "\n")
#    print(xor, drop)
#sys.stdout.write(all)
#os.write(1, bytes(all, 'ascii'))
print(17, 17)
SubtaskSumTestVerdictTimeMemory
subtask10/0
1Wrong answer17ms11072 KiB
subtask20/15
2Wrong answer18ms11400 KiB
subtask30/15
3Wrong answer310ms11400 KiB
subtask40/20
4Wrong answer17ms11804 KiB
subtask50/50
5Wrong answer319ms12144 KiB
6Wrong answer308ms11900 KiB