That happens to me all the time, simply means it's not judged yet, just wait...howardcheng wrote:I submitted something ... When I looked "My submissions", the verdict column is blank.
Search found 2 matches
- Fri May 27, 2011 11:53 pm
- Forum: Bugs and suggestions
- Topic: Missing Verdict
- Replies: 1
- Views: 2292
Re: Missing Verdict
- Fri May 27, 2011 11:40 pm
- Forum: Volume 1 (100-199)
- Topic: 100 - The 3n + 1 problem
- Replies: 1394
- Views: 318350
Problem 100, Java hint
I just want to share something, I used code like this to parse input:
BufferedReader br = ...
String line = br.readLine();
String[] ij;
while ( line != null ) {
ij = line.split( " " );
solve( ... );
line = br.readLine();
}
I was getting Runtime error...
I changed my code to ...
BufferedReader br = ...
String line = br.readLine();
String[] ij;
while ( line != null ) {
ij = line.split( " " );
solve( ... );
line = br.readLine();
}
I was getting Runtime error...
I changed my code to ...