Many codes are going to fail system test today for the problem B of contest Codeforces round 717.Its my prediction,let's see what happens.
# | User | Rating |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 161 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | awoo | 154 |
8 | Dominater069 | 154 |
10 | nor | 150 |
Many codes are going to fail system test today for the problem B of contest Codeforces round 717.Its my prediction,let's see what happens.
Name |
---|
Nice
gg :(
gg :(
orz
What if you are mohammedehab2002's alt account and you knew pretests were weak? :)
U might be right lol
I'm curious to know what motivated you to picking problem B as that special problem
This seems to always happen with bruteforce range condition problems, as people always submit cheese sols. But perhaps there is something more?
I failed it(I qualify as a cheese sol writer)can you tell me how not to approach such questions or how to do so. What to avoid and all.
In my case, I mistakenly wrote a[i] in place of a[j] at one place and still my code passed pretest 2 and 3.
The reason i came to know because usual b problems for which answer is boolena type i.e yes or no 10^4 test cases are checked,but today only 5 test setseach having maximum 15 with 1 having just 2 test cases thus total mybe max 62 which is very very very less number of test cases to be checked for boolean type problems.
CF FST-Predictor
I initially thought that Xor of array should be 0. I got wrong answer on pretest 3. I was thinking of a counter case and then realize of a countercase like this and corrected myself:
4
3 3 3 0
Guess what the above case was the hack XD.
That is why I did stress testing already.
How to do stress testing for a problem ?
You can check Errichto's tutorial.
Can you please give me link ?
Here
Thanks <3