[gcj] Re: Are there any issues with python submission I should know about?

2018-04-06 Thread Rishit Vora
I got the following error when i tried to run the test tool for the first challenge of practice round: Failed to start running your code. Error: [WinError 193] %1 is not a valid Win32 application My python version is 3.6 Thanks in advance! -- You received this message because you are

[gcj] Re: Are there any issues with python submission I should know about?

2018-04-06 Thread ENN_ESS
This is my solution to C. Can anybody help me find out what is wrong with it T = int(input()) result = [] for i in range(T): a = input() a = a.split(" ") destination = int(a[0]) horses = int(a[1]) min = 0 travelled = 0 r = 0 for j in range(horses): b =

[gcj] Re: Are there any issues with python submission I should know about?

2018-04-06 Thread ENN_ESS
This is my solution to cruise control using python 3. Can you please help me where exactly my judgement is failed? T = int(input()) result = [] for i in range(T): a = input() a = a.split(" ") destination = int(a[0]) horses = int(a[1]) min = 0 travelled = 0 r = 0