2697 | 2023-01-18 22:15:49 | kristof | IntervallumXOR kihívás | python3 | Runtime error 0/100 | 18ms | 11992 KiB |
import numpy
from sys import stdin, stdout
import sys
import os
def main() :
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
os.write(1, bytes(str(xor) + " " + str(drop) + "\n", 'ascii'))
# print(xor, drop)
main()
Subtask | Sum | Test | Verdict | Time | Memory | ||
---|---|---|---|---|---|---|---|
subtask1 | 0/0 | ||||||
1 | Runtime error | 18ms | 11084 KiB | ||||
subtask2 | 0/15 | ||||||
2 | Runtime error | 17ms | 11432 KiB | ||||
subtask3 | 0/15 | ||||||
3 | Runtime error | 17ms | 11404 KiB | ||||
subtask4 | 0/20 | ||||||
4 | Runtime error | 17ms | 11676 KiB | ||||
subtask5 | 0/50 | ||||||
5 | Runtime error | 17ms | 11672 KiB | ||||
6 | Runtime error | 17ms | 11992 KiB |