In the new server I got a compile error for my submission. But I am unable to see the error. I haven't got back any email also. It would be greatful if someone can help me with the new server page where I can view the errors for my submission.
Thanks
Kripa
Search found 3 matches
- Mon Dec 17, 2007 4:16 am
- Forum: FAQ
- Topic: Where can I view the compile error for my submission ?
- Replies: 0
- Views: 5684
- Fri Sep 15, 2006 2:01 am
- Forum: Volume 1 (100-199)
- Topic: 108 - Maximum Sum
- Replies: 233
- Views: 52518
- Thu Sep 14, 2006 9:48 pm
- Forum: Volume 1 (100-199)
- Topic: 108 - Maximum Sum
- Replies: 233
- Views: 52518
108 - MaximumRectangleSum - WA - Any idea
Where can I view the input for which my solution failed ? Any insight would be helpful.
/* Maximum sum */
#include <iostream>
#include <vector>
using namespace std;
class MaximumRectangleSum
{
int a[100][100];
int b[100][100];
int max, sum;
int n;
public:
void Init();
int ...
/* Maximum sum */
#include <iostream>
#include <vector>
using namespace std;
class MaximumRectangleSum
{
int a[100][100];
int b[100][100];
int max, sum;
int n;
public:
void Init();
int ...