# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | adamant | 157 |
6 | awoo | 157 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | djm03178 | 153 |
Name |
---|
The link isn't working.
Still, you don't need to feel that bad about the 600 problem — the systemtest for it was dyed in bloody red.
Like I ranted before: TC should have pretests, it's too random this way. I was successfully challenged on both problems I thought I'd managed to solve successfully in the last round I competed in; this time, I got 19. place. Random stuff.
I have uploaded the picture in another "free uploading" server. Does it works now?
Yeah. Lol
Yes, you are right, the 600p was tricky. But the fact is that I failed only by mistyping a variable name.
I agree that stronger pretests would make it better, but there is always a way to fail system test that pretest can't save you.
Just curious about the random function, suppose we don't use some seeds (like srand() in C++) then is it true that the function will always return the same number for the same arguments?
Java's Math.random() is making a new instance of Random class when first called and then uses this instance to make random doubles. To use custom seeds, you should use Random class directly.
Don't worry bro, sometimes even my submissions fail (nod).