VictorXjoeY / Notebook

Notebook used for competitive programming!
11 stars 2 forks source link

Fix wrong overflow check #27

Closed lucasturci closed 4 years ago

lucasturci commented 4 years ago

I think the current overflow check is wrong (undefined behaviour). I received a WA in a recent problem because of that.

Check out the two submissions: https://codeforces.com/contest/1228/submission/70469025 https://codeforces.com/contest/1228/submission/70469115

The second won gave me AC after fixing this.