My best guess is that you submitted the code instead of the output. On Tue, Aug 14, 2018 at 9:26 AM Ruben Ruiz <[email protected]> wrote:
> Hello, > > Can someone help me out, I was practising doing the 2016 Code Jam Problem > A. Counting Sheep ( > https://code.google.com/codejam/contest/6254486/dashboard ) and I m > getting Submission for input A-small Rejected: Your output should start > with 'Case #1: ' > > I ve even donwload and submit the Gennady Code from that year and it's > still giving me that error message. > > Any way this is the code I'm trying to submit: > > t = int(input()) > > for i in range(1, t + 1): > n=input() > > if n == 0: print ("INSOMNIA") > > s = set() > x = 0 > while len(s) < 10: > x += n > s.update(str(x)) > > print("Case #{}: {}".format(str(i),str(x))) > > > is it anyone getting that errror ? > > > Thanks in advance > > -- > 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 post to this group, send email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-code/7e70044b-756c-4c66-aa60-2626c46a2b95%40googlegroups.com > . > For more options, visit https://groups.google.com/d/optout. > -- 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 post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-code/CAGDEU-J44%3DTpynuAixdxME3KyRZwrxCcwVpRvg1AD3ageGVERw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
