Hi experts, 

Could you help take a look my solution of ASeDatAb in Round 1B:
















*class ASeDatAb:    def __init__(self):        pass    def run(self):      
  print('11111111')        for i in range(300):            n = 
int(input())            if n <= 0:                break            
print('0'*(8-n)+'1'*n)aSeDatAb = ASeDatAb()cn = int(input())for ci in 
range(1, cn + 1):    aSeDatAb.run()*

I used the above solution as my first attempt of ASeDatAb, which got 
TLE during the competition, however, I resubmitted the same code again and 
again in practice mode(practice attempt 3&4), they could all pass the Test 
Set 1. Could you take a look at it? 

In this case, is it possible to make my first attempt correct and change my 
penalty time in the contest? Thank you !!

Best Regards,
Augustus

-- 
-- You received this message because you are subscribed to the Google Groups 
Code Jam group. To post to this group, send email to 
[email protected]. To unsubscribe from this group, send email to 
[email protected]. For more options, visit this group at 
https://groups.google.com/d/forum/google-code?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Code Jam" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-code/3a4bb0dc-84b6-442e-b200-de209182b12fn%40googlegroups.com.

Reply via email to