Search found 14 matches

by snail.123
Thu Aug 14, 2008 5:37 am
Forum: Pascal
Topic: pascal compiler (used by online judges)?
Replies: 11
Views: 13607

Pascal Compiler and Parameters used by the judge

One of my friends is building a online judge himself. I asked if he could add Pascal to his accepted languages. He then ask me what compiler and version to use and what parameters settings should be added? I would prefer his judge to be as close to your judge as possible. So, if it is possible, can ...
by snail.123
Thu Aug 14, 2008 5:14 am
Forum: Bugs and suggestions
Topic: Submission migration problem
Replies: 3
Views: 2391

Re: Submission migration problem

It's been over 2 months now. Is my problem unsolvable? Or did you just overlooked my last message? If it is possible, would you still check and see if you can migrate my submission from the old juge for me?
by snail.123
Fri May 30, 2008 12:27 pm
Forum: Bugs and suggestions
Topic: Submission migration problem
Replies: 3
Views: 2391

Re: Submission migration problem

It is 62927. Thank you!
by snail.123
Thu May 29, 2008 7:16 pm
Forum: Bugs and suggestions
Topic: Submission migration problem
Replies: 3
Views: 2391

Submission migration problem

I tried to migrate my submission from the old judge today. I followed the 'migrate submissions' link and was told 99 24 hour judge submissions was migrated. However, when I checked my stats, only 1 out of the 99 submissions was migrated.

my stats page:
http://icpcres.ecs.baylor.edu/onlinejudge ...
by snail.123
Mon May 19, 2008 11:17 am
Forum: Volume 8 (800-899)
Topic: 801 - Flight Planning
Replies: 2
Views: 4918

801 - Flight Planning

I've got a lot of WAs, could someone give me some test data please?
by snail.123
Tue May 13, 2008 5:55 am
Forum: Bugs and suggestions
Topic: Home Page Render Problem
Replies: 3
Views: 1963

Re: Home Page Render Problem

I found the same thing since 2008/4/21. I Thought the server was down or something. A few days later, I installed Fire Fox and access the server with it perfectly fine. Hence I install Fire Fox on every computer I use.
by snail.123
Thu May 08, 2008 1:01 am
Forum: Volume 112 (11200-11299)
Topic: 11221 - Magic square palindromes.
Replies: 58
Views: 30617

Re: 11221 - Magic square palindromes

I was suspecting the same thing, but the problem states that 0<length(L)<10000, which should not be big enough to make s into a negative value. I am still confused.
by snail.123
Wed May 07, 2008 2:53 pm
Forum: Volume 8 (800-899)
Topic: 836 - Largest Submatrix
Replies: 19
Views: 13306

Re: 836 - Largest Submatrix

Never mind, I forgot to put a blank line between two cases.
by snail.123
Wed May 07, 2008 1:53 pm
Forum: Volume 108 (10800-10899)
Topic: 10878 - Decode the tape
Replies: 23
Views: 20226

Re: 10878 - Decode the tape

For the first and last line of "___________", you should not output anything. But your code ouputs '\0' for those lines of input.
by snail.123
Wed May 07, 2008 8:56 am
Forum: Volume 112 (11200-11299)
Topic: 11221 - Magic square palindromes.
Replies: 58
Views: 30617

Re: 11221 - Magic square palindromes

Amr Saqr,

I don't know why you got TLE, but your code got AC with 0.040s after the following block is deleted.

if (flag)
{
check="";
for (int s=input.size()-1;s>=input.size()-root;s--)
for (int t=s;t>=0;t-=root)
check+=input[t];
if (input!=check)
flag=false;
}
by snail.123
Sun May 04, 2008 4:26 pm
Forum: Volume 8 (800-899)
Topic: 836 - Largest Submatrix
Replies: 19
Views: 13306

Re: 836 - Largest Submatrix

I used Angga's algo but got WA. Can anyone tell me what went wrong with my code? Or give me some critical input to test. Thanks a lot!

Code: Select all

Deleted after AC
by snail.123
Mon Nov 26, 2007 11:35 am
Forum: Volume 5 (500-599)
Topic: 565 - Pizza Anyone?
Replies: 12
Views: 6646

Thanks a lot! This error is kind of hard to spot for a Pascal programmer like me.
by snail.123
Mon Nov 26, 2007 9:59 am
Forum: Volume 5 (500-599)
Topic: 565 - Pizza Anyone?
Replies: 12
Views: 6646

Why "Stack was corrupted"?

Here's my code for "p565: Pizza Anyone?"

#include <iostream>
using namespace std;

int main() {
char ch;
int n, req[1][12], i, sat, j, tp;

// code deleted after AC

req[0][n] = req[1][n] = 0; // value of n is changed unexpectedly here.

// code deleted after AC
}
}

When I ran it in ...
by snail.123
Wed Jun 13, 2007 3:42 am
Forum: Bugs and suggestions
Topic: Why are seekeof and seekeoln restricted functions?
Replies: 1
Views: 2459

Why are seekeof and seekeoln restricted functions?

Pascal's got fewer I/O function than C. Restricting the use of seekeof and seekeoln make it even fewer for Pascal programmers. :-? Like in 825, it would be very handy if we can skip the spaces at the end of the line using seekeoln. Is it possible to lift this restriction? :P

Go to advanced search