CP_nii_krni's blog

By CP_nii_krni, history, 6 years ago, In English

my code for that problem is working on custom test of cf and even in my system compiler.. and i'm getting required answer to all test cases but on submission at cf I got strange massage saying wrong answer... And that comment is

Can't find file K:\ramdisk\codeforces61\9c5383c0192771e8d22775984f40362f\check-e068a9b89c80e5d690845be2e470a589\run\output.txt invokerId=ef4de2e8346ee1a664bb563100318fea, location=203279215

plz help me to get rid of this..

  • Vote: I like it
  • -9
  • Vote: I do not like it

| Write comment?
»
6 years ago, hide # |
 
Vote: I like it +8 Vote: I do not like it

The problem probably requires reading/writing from a specified file. Can you link the problem and your submission?

»
6 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

You can use this piece of code for accessing input and output files.

ifstream in;
ofstream out;
in.open("input.txt");
out.open("output.txt");

Because, as far as I think, #ifndef ONLINE_JUDGE is ignored by codeforces compiler. Even if we write this in codes with input and output from stdin and stdout, it works (ignoring the command to accept input from files).

And also, your submission diagnostics say that, code is executed with error 'out of bounds'. So you must also check that issue.

Hope this helps.