slycelote's blog

By slycelote, 14 years ago, In English

(This FAQ may be outdated. Please refer to official help).

I'm sure we won't need this post after Codeforces comes out of beta, but meanwhile it could be useful :) Feel free to suggest what should be added here.

Competitions: general

Q. What are the rules of these contests?
A. Read this.

Q. What languages are supported? What are the compiler options and run command lines? What is the configuration of judge servers?
A. The judge machines are Core 2 Duo, 2.67 Ghz (E6750). The full list of supported languages and compiler options can be found in this post

Q. How do I hack other's solutions?
A. First lock your own solution in the main ('problems') tab. Then in your room double click or Ctrl+click the solution you want to hack. Check this post for complete rules concerning hacking.

Q. How is rating calculated?
A. The rating system is described in these two posts. Note that even for a joined contest the rating updates are calculated separately for the first and the second divisions. Therefore, a situation is possible, when a div2-coder performed worse than a div1-coder in the same contest, but gained more rating points.

Competitions: writing code


Q. How do I read/write 64bit integers in C/C++?
A. If you submit under "GNU C++" or "GNU C" option, use this:
   printf("%I64d\n",n);
but NOT this:
   printf("%lld\n",n);

If you submit under "MS C++" option, both variants should work.

And of course, with C++ you can always write
   std::cout << n << "\n";

Q. How can my program determine whether it runs in Codeforces server?
A. For most programming languages Codeforces environment defines the symbol ONLINE_JUDGE. Again, see this post for details.


Using the site


Q. How do I read other people's code?
A. After the contest is over, go to its page (for example, http://codeforces.com/contest/15 ) and click on this picture: . You will see a page with several submits (currently 100, I think). You can sort and filter the solutions there. To see the fastest solutions, you need to manually paste a URL like this: http://codeforces.com/contest/15/status/A?order=BY_ARRIVED_ASC
(currently there's no way to do this via UI)


Q. During the practice, can I see the test case that my program failed on?
A. No. YES! Go to 'My submissions' tab and click the link showing the ID of your submission.

Q. How can I find some useful information on this site?
A. Try google or this query: "http://codeforces.com/search?query=<what do you want>".

Q. Why are my comments / post empty?
A. If you used copy-paste, your comment may have some incorrect tags. Try to look at the HTML code of your message (button "< >") and erase all charset tags. If the system tells you "Rendering to html failed: ....", you used "\$" symbol. Codeforces supports

Unable to parse markup [type=CF_TEX]

formulas which are enabled by this symbol. Try to avoid it.

Q. Can I post a highlighted code sample?
A. Currently the best way is to submit the code to a service like codepad.org and post only links to the submit.

Miscellaneous


Q. I've found a bug! When I upvote a post, its rating increases by 2 points, but when I downvote a post, its rating decreases only by 1 point.
A. It's not a bug, it's a feature.






  • Vote: I like it
  • +14
  • Vote: I do not like it

| Write comment?
14 years ago, # |
  Vote: I like it +12 Vote: I do not like it
Q3. Should I do anything special right after a contest starts?
A3. Yes, you should. Open all problems in different browser tabs as soon as possible.
There is a good chance you won't be able to do that later, because of the server's occasional shutdowns.

:)
  • 14 years ago, # ^ |
      Vote: I like it +12 Vote: I do not like it
    Ouch, that was tough! :)
    But seriously, it happened only twice, I think. (Although I usually try to follow this advice anyway :) )
    • 13 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it
      I think uploading the problem as pdf on a different server was a good idea :)
14 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Wrong.

Q2. How do I read/write 64bit integers in C (GNU/ mingw)?

Q3. How do I read/write 64bit integers in C (MSVC)?

Q4. How do I read/write 64bit integers in C++?
  • 14 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it
    It seems that with GNU C we should also use %I64d, at least here on Codeforces.
14 years ago, # |
  Vote: I like it 0 Vote: I do not like it
Actually, "%lld" works perfectly fine, if you submit using "Visual C++" instead of "GNU C++", and I believe is should be mentioned.
  • 14 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it
    So, %lld works iff you submit using "Visual C++", and %I64d works iff you submit using "GNU C++", right?
    • 14 years ago, # ^ |
        Vote: I like it +1 Vote: I do not like it
      Most likely for Visual C++ both of them work fine.
      For GNU only I64d.
14 years ago, # |
  Vote: I like it +3 Vote: I do not like it
A2. There's big performance difference between
  std::cout << std::endl;
and
  std::cout << "\n";
The first statement flushes output buffers to disk, so it is much slower. It matters if output is huge.
14 years ago, # |
  Vote: I like it 0 Vote: I do not like it
A4. No. But you can see the number of test on which your program failed.

[rus_spoiler]Думаю ещё стоит описать особенности системы комментирования: символ ^ и backspace (browser.back) для возврата на предыдущее сообщение.[/rus_spoiler]
13 years ago, # |
  Vote: I like it +1 Vote: I do not like it
Please, add that the judge machines are Core 2 Duo, 2.67 Ghz (E6750).
13 years ago, # |
Rev. 2   Vote: I like it +8 Vote: I do not like it
Q9. How can I find some useful information on this site?
A9. Try google or this query: "http://codeforces.com/search?query=<what do you want>".

13 years ago, # |
  Vote: I like it +4 Vote: I do not like it
Q10. Why are my comments crashed?
A10. If your comments suddenly disappeared, you used copy-paste and your comment have some incorrect tags. Try to watch html code of your message (button "< >") and erase all charset tags. If system told you "Rendering to html failed: ....", you use "\$" symbol as a symbol. Comments can contain some formulas () with help of "\$" symbol. Try to avoid this symbols.
13 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it
Q0. What are the rules of these contests?
A0. Read this.
13 years ago, # |
Rev. 2   Vote: I like it +3 Vote: I do not like it
Q. Hi! I'm new at this site. What can I do?
A. Here is some tactic:

1. Solve the Problemset starting from most solvable - seems to be a more simple problem.
2. Wait for a registration for a next contest.
3. Register, check yourself in registrants ().
4. Wait for the contest starts, read the original interesting contest rules, don't get confused with them, read the rules again.
5. Write the contest.
6. If you are not in «Top rated», goto step 1.
7. ???????
8. PROFIT
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
Q. I want to post all my templates for sharing my beautiful code. Can I do that at this site?
A. Yes (?), but you should better post your code on one of the services like codepad.org and have just one post, containing your templates, e.g.:
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
Thanks for the contribution everyone. Sorry for the delay, I don't receive e-mails about new comments for some reason.
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
How can I ask a question about a problem that is used already in a contest?
  • 13 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it
    I think that the best way is to write about it on your blog or find the blog with this particular contest and ask your question there.
12 years ago, # |
  Vote: I like it 0 Vote: I do not like it
Is it possible to change the handle? It'd be nice if I could change it to my Name+Surname making easier for my friends to find me.
12 years ago, # |
  Vote: I like it 0 Vote: I do not like it
When I registered for the Contest but at the time it due, I'm busy and can't not attend, will it affect my rating? (I mean will it count as I solved zero problems?)
  • 12 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it
    No, it will not affect your rating if you haven't done any submitions.
»
10 years ago, # |
  Vote: I like it 0 Vote: I do not like it

How could I get problemset which are get input and output from a txt rather than standard input and output...?

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

how to raise a help query regarding a submission which gave right answer on my compiler as well as ideone but wrong answer on codeforces

»
8 years ago, # |
  Vote: I like it +8 Vote: I do not like it

As far as I can see this

 printf("%I64d\n",n);

is not necessary yet. I checked on cppreference.com using different compilers and here using GNU and MS compilers. This piece of code

 scanf("%lli\n",&n);
 printf("%lli\n",n);

works well. You can use %lld also. I'm not sure 100% that I properly tested it, but I think it is time to review this Q-A.