Search found 7 matches
- Wed Jun 06, 2012 3:36 pm
- Forum: Volume 1 (100-199)
- Topic: 128 - Software CRC
- Replies: 62
- Views: 9036
Re: 128 Software CRC
Actually, this is indeed a horrible problem. That is because the judge doesn't have valid input for it. As per problem text: Each input line will contain no more than 1024 ASCII characters Actually there are lines with more than 65535 characters in the judgement data set. I am slightly annoyed by th...
- Sat May 12, 2012 9:48 am
- Forum: Volume 1 (100-199)
- Topic: 124 - Following Orders
- Replies: 49
- Views: 8340
Re: 124 ....i don't know why WA
Hello all,
The input for this is wrong. The problem states: "There will be at least one, and no more than 300 orderings consistent with the contraints in a specification. "
The last input in this set produces more than 1100 orderings.
Best Regards,
at5anpo3
The input for this is wrong. The problem states: "There will be at least one, and no more than 300 orderings consistent with the contraints in a specification. "
The last input in this set produces more than 1100 orderings.
Best Regards,
at5anpo3
- Sat May 12, 2012 9:43 am
- Forum: Volume 1 (100-199)
- Topic: 124 - Following Orders
- Replies: 49
- Views: 8340
Re: #124 Looking for test cases
Hello all,
The pdf description of this problem contains in Output section: "Characters on a line are separated by whitespace." This doesn't appear in the text description. The right way is to printf("%c", whatever) without any whitespace.
Best Regards,
at5anpo3
The pdf description of this problem contains in Output section: "Characters on a line are separated by whitespace." This doesn't appear in the text description. The right way is to printf("%c", whatever) without any whitespace.
Best Regards,
at5anpo3
- Thu May 10, 2012 2:44 pm
- Forum: Volume 1 (100-199)
- Topic: 123 - Searching Quickly
- Replies: 55
- Views: 6913
Re: 123 Searching Quickly
The example above should be missing ":" from
The output file MUST end with a \n, or else you fail the judge! (had to find it the hard way).
Best Regards,
at5anpo3
Code: Select all
by Goat Island:
Best Regards,
at5anpo3
- Sun May 06, 2012 2:12 am
- Forum: General
- Topic: How are times of 0.00 seconds possible?
- Replies: 3
- Views: 7773
Re: How are times of 0.00 seconds possible?
apparently, some time around 2008 (look for "new judge" in these boards), the computer which measures the execution time was changed. as per 2012, I find peculiarities around 0.004 - 0.0040 seconds, code which "clearly" is faster doesn't get a faster execution time. "clearly...
- Sat May 05, 2012 6:39 pm
- Forum: Volume 1 (100-199)
- Topic: 119 - Greedy Gift Givers
- Replies: 145
- Views: 29981
Re: 119 Why WA??
the example with Fat and Dude is wrong.
as per text "All names are lower-case letters". Therefore, it should be fat and dude.
Best Regards,
at5anpo3
as per text "All names are lower-case letters". Therefore, it should be fat and dude.
Best Regards,
at5anpo3
- Sun Apr 29, 2012 6:52 pm
- Forum: Volume 1 (100-199)
- Topic: 115 - Climbing Trees
- Replies: 30
- Views: 12082
Re: 115 - Climbing Trees
Bringing in my small contribution for all the people who are getting WA at this problem. - names can (and WILL) contain '-' character. Therefore '-' should not be considered a delimiter of names but rather a character just as 'a'...'z', '.' are. I found this the very hard way while scouting the inte...