Time Limit for Golang ?

What is the default timelimit for Golang? Is it the same as C, C++ or some relaxation is provided as in Python or Java ?

The reason being I tried to code the solution for problem CNOTE in March Challenge in Golang using O(n) complexity and I got TLE for some cases. The same logic was used for my C solution that easily passes the time limit.

My solution is http://www.codechef.com/viewsolution/6453605

According to the updated official codechef blog, the time limits are as given below.

Java – 2X

Python – 5X

Ruby – 3X

PHP – 3X

Lisp clisp – 3X

Lisp sbcl – 3X

Scala – 2X

C# – 2X

All other languages – 1X

Here X stands for the time limit states in the problem page itself.

So " go language " falls under 1X category

For more details visit this link.