Search found 10 matches
- Tue Sep 11, 2012 2:23 am
- Forum: Volume 7 (700-799)
- Topic: 755 - 487--3279
- Replies: 115
- Views: 47508
Re: 755 - (487--3279) - WA ?
Thanks, got AC.
- Sun Sep 09, 2012 5:19 am
- Forum: Volume 7 (700-799)
- Topic: 755 - 487--3279
- Replies: 115
- Views: 47508
Re: 755 - (487--3279) - WA ?
Hmm, the case is passed by increasing hash size .. still WA...code updated
- Fri Sep 07, 2012 2:43 am
- Forum: Volume 7 (700-799)
- Topic: 755 - 487--3279
- Replies: 115
- Views: 47508
Re: 755 - (487--3279) - WA ?
Hi, Thanks,
Now I print blank line between datasets; handled "no duplicates", still WA, code updated in above
Now I print blank line between datasets; handled "no duplicates", still WA, code updated in above
- Thu Sep 06, 2012 5:58 am
- Forum: Volume 7 (700-799)
- Topic: 755 - 487--3279
- Replies: 115
- Views: 47508
755 - (487--3279) - WA ?
Can anyone provide a test case ?
Code: Select all
Cut after AC
- Sun Aug 19, 2012 6:27 am
- Forum: Volume 6 (600-699)
- Topic: 673 - Parentheses Balance
- Replies: 243
- Views: 79453
Re: 673 Parentheses Balance - WA ?
Got ACC, thanks
- Fri Aug 17, 2012 4:33 am
- Forum: Volume 6 (600-699)
- Topic: 673 - Parentheses Balance
- Replies: 243
- Views: 79453
Re: 673 Parentheses Balance - WA ?
Thanks, I've updated code to handle empty string now, but still WA
- Wed Aug 15, 2012 11:06 am
- Forum: Volume 6 (600-699)
- Topic: 673 - Parentheses Balance
- Replies: 243
- Views: 79453
Re: 673 Parentheses Balance - WA ?
If i switch to getline and check for empty strings;
I got a TLE, guess it's waiting for input maybe
Code: Select all
getline (cin, str);
if (str.empty()) { ++N; continue; }
- Tue Aug 14, 2012 1:18 pm
- Forum: Volume 6 (600-699)
- Topic: 673 - Parentheses Balance
- Replies: 243
- Views: 79453
Re: 673 Parentheses Balance - WA ?
I think if the whole line is empty, cin will not write to the string, am I wrong ?
- Mon Aug 13, 2012 10:05 am
- Forum: Bugs and suggestions
- Topic: Support of more languages
- Replies: 1
- Views: 2187
Support of more languages
Hi,
Maybe add perl / python support to allowed prog langs ?
Maybe add perl / python support to allowed prog langs ?
- Mon Aug 13, 2012 8:40 am
- Forum: Volume 6 (600-699)
- Topic: 673 - Parentheses Balance
- Replies: 243
- Views: 79453
673 Parentheses Balance - WA ?
I don't know why, got lots of test cases passed:
Code: Select all
Remove after AC