fork download
  1. Q=lambda*f:'## %s, %s bytes\n\n\t%s'%f
  2. exec("print(Q(*eval(input()))+'\\n');"*3)
Success #stdin #stdout 0.02s 9984KB
stdin
('Python 3.5',11,'print("hi")')
('Python 3.5', 21,'lambda f:int(`f`*2)*f')
('Java',66,'L->java.util.regex.Pattern.compile("(.+)\\1{4}").matcher(L).find();')
stdout
## Python 3.5, 11 bytes

	print("hi")

## Python 3.5, 21 bytes

	lambda f:int(`f`*2)*f

## Java, 66 bytes

	L->java.util.regex.Pattern.compile("(.+)\1{4}").matcher(L).find();