Search found 12 matches
- Sat Aug 10, 2002 12:37 am
- Forum: Volume 1 (100-199)
- Topic: 101 - The Blocks Problem
- Replies: 635
- Views: 108537
- Sat Aug 10, 2002 12:35 am
- Forum: Volume 1 (100-199)
- Topic: 112 - Tree Summing
- Replies: 137
- Views: 32182
Annoying Runtime Error
Sorry I didn't take a close look on your programme. But, as far as I know, dividing by 0 or trying to manipulate the pointer which is assigned NIL would usually lead to Runtime Error. Try to enlarge your array or something like that.
- Sat Aug 10, 2002 12:31 am
- Forum: General
- Topic: All about Runtime Error
- Replies: 0
- Views: 1137
All about Runtime Error
Perhaps I should change the way I ask. What kind of mistake usually causes Runtime Error?
- Fri Aug 09, 2002 2:21 pm
- Forum: Volume 1 (100-199)
- Topic: 101 - The Blocks Problem
- Replies: 635
- Views: 108537
I've changed, nothing changed but my Runtime Error times.
I've enlarged my array upto 100. And I've spent the annoying 30m typing different awful command to test my program, nothing wrong with that!!! What's wrong lying there? That annoying? There must be something big and huge? Wish I was Harry Potter. 

- Wed Aug 07, 2002 5:32 pm
- Forum: Volume 1 (100-199)
- Topic: 104 - Arbitrage
- Replies: 223
- Views: 37132
- Wed Aug 07, 2002 5:18 pm
- Forum: Volume 1 (100-199)
- Topic: 102 - Ecological Bin Packing
- Replies: 485
- Views: 116167
Just a simply edit!
You may have misunderstanding its output regular. It requires one to output the alphabetically first string representing a minimal configuration should be printed. You may have miss that! Try again! Good luck! 

- Wed Aug 07, 2002 5:09 pm
- Forum: Volume 1 (100-199)
- Topic: 101 - The Blocks Problem
- Replies: 635
- Views: 108537
P101, an ever strange mistake!!! Help!!!
[pascal]
Program Blocks(input,output);
Type
pointer=^node;
node=record
num,cur_stack:integer;
prev,next:pointer;
end;
Var n:integer;
cmd:string;
queue:array[0..24] of node;
boxes:array[0..24] of node;
Procedure Display;
var i,j:integer;
p:pointer;
begin
for i:=0 to n-1 do
begin
write(i ...
Program Blocks(input,output);
Type
pointer=^node;
node=record
num,cur_stack:integer;
prev,next:pointer;
end;
Var n:integer;
cmd:string;
queue:array[0..24] of node;
boxes:array[0..24] of node;
Procedure Display;
var i,j:integer;
p:pointer;
begin
for i:=0 to n-1 do
begin
write(i ...
- Wed Aug 07, 2002 5:05 pm
- Forum: Volume 1 (100-199)
- Topic: 101 - The Blocks Problem
- Replies: 635
- Views: 108537
- Fri Jul 19, 2002 7:52 pm
- Forum: Volume 1 (100-199)
- Topic: 104 - Arbitrage
- Replies: 223
- Views: 37132
Word "Diagnal" says it out!
Word "Diagnal" says all out!
- Fri May 17, 2002 5:16 pm
- Forum: Volume 1 (100-199)
- Topic: 100 - The 3n + 1 problem
- Replies: 1394
- Views: 317759
A wrong place to be corrected

And I've read the answer published by this site, (on the bottom of the page---Intepreter Judge Answer. ) I found the variable which need to be calculated whether it's odd or not should be long int type. (Pascal).
- Sun May 12, 2002 8:12 am
- Forum: Volume 1 (100-199)
- Topic: 100 - The 3n + 1 problem
- Replies: 1394
- Views: 317759
Input and Output Problems of 100
I'm new here. I saw other posts, and found no prolblems I got. My source codes appeared to be right on my own compiler. But I got WA from the Judge. I guess this should be something to do with the input and output in my source code. Could anyone be kind to help me? :wink:
[pascal ...
[pascal ...
- Sun Mar 10, 2002 8:25 am
- Forum: Other words
- Topic: rules to submit
- Replies: 2
- Views: 2257