Search found 2 matches
- Sat Jun 13, 2009 10:44 am
- Forum: Volume 1 (100-199)
- Topic: 116 - Unidirectional TSP
- Replies: 226
- Views: 36019
Re: 116 Help me
Hi all, First, I want to thank jackie for wonderful test cases from which I recognized the bugs in my code. :) I would also like to contribute two more test cases which I made myself to break my code (sorry if someone else has already posted, my bad for not searching the forum thoroughly :P). Input ...
- Fri Jun 12, 2009 12:22 pm
- Forum: Bugs and suggestions
- Topic: Special Corrector Problem - Always PE
- Replies: 10
- Views: 4880
Re: Special Corrector Problem - Always PE
I got PE for 10131 with this code:
I hope it'll get fixed soon. 
Code: Select all
#include <iostream>
using namespace std;
int main()
{
int n1, n2;
while (cin >> n1 >> n2);
cout << "Hello World\n";
return 0;
}
