
Search found 18 matches
- Fri Jun 16, 2006 6:01 am
- Forum: Other words
- Topic: Is it possible to recover my codes?
- Replies: 2
- Views: 2159
- Wed Jun 14, 2006 10:25 am
- Forum: Other words
- Topic: Is it possible to recover my codes?
- Replies: 2
- Views: 2159
Is it possible to recover my codes?
I don't know if it's proper to post the troubles here, but i lost all my C codes for the ACM problems. (because my hard disk broke) :( Is it possible to contact the online-judge to recover my codes with their back-up? I hope they can mail my codes back to me. Please tell me where I should post or wh...
- Tue Nov 02, 2004 10:11 am
- Forum: Volume 105 (10500-10599)
- Topic: 10594 - Data Flow
- Replies: 40
- Views: 26990
- Tue Aug 24, 2004 4:40 pm
- Forum: Volume 7 (700-799)
- Topic: 751 - Triangle War
- Replies: 17
- Views: 8140
- Thu Jul 29, 2004 5:00 pm
- Forum: Volume 102 (10200-10299)
- Topic: 10278 - Fire Station
- Replies: 59
- Views: 22785
- Wed Jul 21, 2004 10:34 am
- Forum: Volume 8 (800-899)
- Topic: 897 - Anagrammatic Primes
- Replies: 21
- Views: 13493
- Tue Jul 20, 2004 12:05 pm
- Forum: Volume 4 (400-499)
- Topic: 454 - Anagrams
- Replies: 97
- Views: 23547
- Tue Jul 20, 2004 9:02 am
- Forum: Volume 8 (800-899)
- Topic: 897 - Anagrammatic Primes
- Replies: 21
- Views: 13493
- Wed Jun 02, 2004 8:43 am
- Forum: Volume 106 (10600-10699)
- Topic: 10655 - Contemplation - Algebra
- Replies: 42
- Views: 11442
- Sun Sep 21, 2003 7:46 am
- Forum: Volume 2 (200-299)
- Topic: 291 - The House Of Santa Claus
- Replies: 19
- Views: 7453
- Tue Sep 09, 2003 2:42 pm
- Forum: Volume 4 (400-499)
- Topic: 402 - M*A*S*H
- Replies: 56
- Views: 14772
Re: WA Still
My programs response: :o I don't understand the problem. Can anyone help me? :o Input: :-? 10 2 3 5 4 3 2 9 6 10 10 6 2 7 3 4 7 4 5 3 2 4 47 6 11 2 7 3 4 8 5 10 7 8 3 7 4 2 3 9 10 2 5 3 31 9 5 8 2 1 7 7 11 3 6 5 4 9 10 5 2 1 5 3 9 7 16 3 11 2 7 3 4 8 5 10 7 8 3 7 4 2 3 9 10 2 5 3 25 1 7 7 7 7 8 8 8...
- Wed Sep 03, 2003 4:14 pm
- Forum: Volume 3 (300-399)
- Topic: 325 - Identifying Legal Pascal Real Constants
- Replies: 63
- Views: 16664
Try this method: only same states are allowed, also create biggest figure of good constant, it is: x[.(x)+][{E|e}(x)+] where (x)+ means one or more digit [x] means optional part of expression {x|y} means one and exactly one of specified in brackets values I've got AC by using Dominik's method :lol:...
- Wed Sep 03, 2003 6:12 am
- Forum: Volume 101 (10100-10199)
- Topic: 10110 - Light, more light
- Replies: 76
- Views: 28704
- Wed Aug 20, 2003 1:30 pm
- Forum: Volume 102 (10200-10299)
- Topic: 10257 - Dick and Jane
- Replies: 14
- Views: 7928
Thx. According this test data~ I found my mistake and got ACgvcormac wrote:http://plg.uwaterloo.ca/~acm00/S98-1/test_data/ (problem B)

Only need to worry when s+p != y , Puff should +1 age before Spot.
(Using trial & error , I finally found that

- Sun Aug 17, 2003 3:48 pm
- Forum: Volume 4 (400-499)
- Topic: 482 - Permutation Arrays
- Replies: 159
- Views: 35924
following code might help: [c] typedef struct { int index; char num[20]; } array; array a[100000]; [/c] good luck :) -sohel I am afraid this structure array's size still not big enough... I just got AC by changing my arraysize output[10000][20] --> output[10000][55] So the judge input must have som...