Search found 139 matches
- Mon Nov 07, 2011 4:24 pm
- Forum: Volume 101 (10100-10199)
- Topic: 10188 - Automated Judge Script
- Replies: 58
- Views: 30719
Re: 10188 - Automated Judge Script
a solution is PE means every line PE. a solution is WA means at least one line WA. a solution is AC means All characters must match and must occur in the same order. a solution is PE means All numeric characters match in the same order, but there is at least ONE non-matching non-numeric character. ...
- Tue May 24, 2011 3:53 am
- Forum: Bugs and suggestions
- Topic: UVa 10138 CDVII
- Replies: 2
- Views: 4108
UVa 10138 CDVII
I wander if the judge data contains line like this or not. test 01:01:02:02 Enter 19 test 01:01:04:06 ExiT 19 because I use a string variable to represent the status of vehicle, when I test the status of car, I use: status == "enter" or status == "exit" and I got Wrong Answer a lots of times. so I s...
- Mon May 23, 2011 11:10 pm
- Forum: Volume 101 (10100-10199)
- Topic: 10138 - CDVII
- Replies: 18
- Views: 7993
Re: 10138 - CDVII
the judge data may contain line like this: test 01:02:01:23 Enter 17 test 01:02:04:23 Exit 17 if you use a string variable to represent the status of car, for example: string car_status; then you should determine the status of car by using: car_status[1] == 'n' car_status[1] == 'x' but not: car_stat...
- Wed May 18, 2011 3:09 pm
- Forum: Volume 101 (10100-10199)
- Topic: 10188 - Automated Judge Script
- Replies: 58
- Views: 30719
Re: 10188 - Automated Judge Script
a solution is PE means every line PE.
a solution is WA means at least one line WA.
a solution is WA means at least one line WA.