Can someone tell me how to add(parse) contest information in my code editor before submitting to any OJ as it is done in Cp Editor?
For Eg.
Thanks in advance.
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3831 |
3 | Radewoosh | 3646 |
4 | jqdai0815 | 3620 |
4 | Benq | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | gamegame | 3386 |
10 | ksun48 | 3373 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
Can someone tell me how to add(parse) contest information in my code editor before submitting to any OJ as it is done in Cp Editor?
// Problem: A. Median Maximization
// Contest: Codeforces — Codeforces Global Round 16
// URL: https://codeforces.net/contest/1566/problem/A
// Memory Limit: 256 MB
// Time Limit: 1000 ms
Thanks in advance.
Name |
---|
Luckily CpEditor is open source... So we can take a look to see how it actually happens!
onRequestArrived
(you can see them being linked together inAppWindow::setConnections()
)finalComments
is the final string outputted to the editor as content (you can trace to see where it adds comment prefixes per language for each line, and even callseditor.setText()
here on line 555)Hope this helps!