Search found 37 matches
- Sat Mar 01, 2008 3:18 pm
- Forum: Volume 114 (11400-11499)
- Topic: 11406 - Best Trap
- Replies: 8
- Views: 3649
There must be. I also first assumed that the result is regardless of N, and I got WA. Notice that the net is conical, so I think you can place it only so that it is wholly included in the room. Consider the input 100 10 3 0 0 0 1 49 49 I presume the result to be 2, since no way you can cover the poi...
- Thu Sep 23, 2004 6:46 pm
- Forum: Volume 103 (10300-10399)
- Topic: 10344 - 23 out of 5
- Replies: 81
- Views: 29703
Hello, I get WA on this problem again and again. Maybe I don't understand the problem description. Tell me if I am wrong: 1) There occurs 0 in the input 2) Could I use division , or only +, *, -? Maybe it's posible if there occurs 0 and you can use division -- that would be the reason for yatsen's r...
- Wed Sep 01, 2004 5:02 pm
- Forum: Volume 1 (100-199)
- Topic: 120 - Stacks of Flapjacks
- Replies: 118
- Views: 16323
Hi, Quantris -- this is indeed true. I also changed only the input processing part [ I read integer by integer and have changed it to reading character by character ] and this got AC. Before, my code got WA in 0.000 or 0.002 even if I added a part: [pascal] for i:=1 to 10000000000 do writeln ('gfdgf...
- Sat Jul 31, 2004 7:47 pm
- Forum: Volume 1 (100-199)
- Topic: 120 - Stacks of Flapjacks
- Replies: 118
- Views: 16323
- Wed Jul 28, 2004 10:38 pm
- Forum: Volume 101 (10100-10199)
- Topic: 10106 - Product
- Replies: 98
- Views: 30005
Hello how silly copmuters are :[ When I ran my program on your tests, it gave too few numbers in output [later I realised that when reading from console in Turbo Pascal the maximum length of a string can be 127 :/]. I thought it is because string limit [255] is too small -- so in few minutes I chang...
- Wed Jul 28, 2004 10:05 pm
- Forum: Volume 100 (10000-10099)
- Topic: 10051 - Tower of Cubes
- Replies: 19
- Views: 9407
- Wed Jul 28, 2004 10:03 pm
- Forum: Volume 101 (10100-10199)
- Topic: 10188 - Automated Judge Script
- Replies: 58
- Views: 32259
- Wed Jul 28, 2004 3:39 pm
- Forum: Volume 101 (10100-10199)
- Topic: 10106 - Product
- Replies: 98
- Views: 30005
- Wed Jul 28, 2004 1:52 pm
- Forum: Volume 101 (10100-10199)
- Topic: 10106 - Product
- Replies: 98
- Views: 30005
- Mon Jul 26, 2004 9:19 pm
- Forum: Volume 104 (10400-10499)
- Topic: 10409 - Die Game
- Replies: 7
- Views: 4495
Hi, I got WA all the time. Can you please give me some test cases? What's the answer for 1 west ? Should it be 3 or 4? I don't paste my code here as it is really long, much longer than ones on the board, I use more complicated method but it should be AC I think... With regards ;) ---This part was ad...
- Sun Jul 25, 2004 1:48 pm
- Forum: Volume 101 (10100-10199)
- Topic: 10100 - Longest Match
- Replies: 95
- Views: 23128
Heyya some hints for those who know the algorithm but got WA [there are some stupid test cases]: 1) The case of the letters matters, 2) Characters '0', '1', ..., '9' are considered as alphabetic ones [not as white spaces], 3) Output 'Blank' only when no characters appear in the line. Finally I got A...
- Wed Jul 21, 2004 10:57 pm
- Forum: Volume 1 (100-199)
- Topic: 120 - Stacks of Flapjacks
- Replies: 118
- Views: 16323
Hi, I can't make out what's wrong with my program :/ I've tested it on all inputs I can think of, I consider the case that two pancakes have the same diameter, but it gives me WA in 0.000 Please help! Check my program or even give me some stupid input ;) [pascal] program miazio; var t, sort:array [1...
- Thu Jun 24, 2004 7:21 pm
- Forum: Volume 101 (10100-10199)
- Topic: 10137 - The Trip
- Replies: 159
- Views: 51214
- Thu May 06, 2004 3:40 pm
- Forum: Volume 106 (10600-10699)
- Topic: 10610 - Gopher and Hawks
- Replies: 29
- Views: 13520
Why does this get WA, I'm going sligtly mad ... [pascal] program miazio; const max = 10000; {} function odl (ax, ay, bx, by:real):real; begin odl:=sqrt (sqr (ax - bx) + sqr (ay - by)); end; {} type mia = record x, y:real; end; var t:array [1..max] of mia; kro:array [1..max] of longint; kolej:array [...
- Mon Apr 05, 2004 9:53 pm
- Forum: Volume 104 (10400-10499)
- Topic: 10474 - Where is the Marble?
- Replies: 50
- Views: 21051