Why do I get the "division by zero" error in this? https://mirror.codeforces.com/contest/1183/submission/56306470 I will be more than appreciated if you help me!
№ | Пользователь | Рейтинг |
---|---|---|
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 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
Why do I get the "division by zero" error in this? https://mirror.codeforces.com/contest/1183/submission/56306470 I will be more than appreciated if you help me!
Название |
---|
hope it help
Yes, I know that.......I am just wondering what caused this problem
maybe it understand the line as
ans[k] % (a[j] != 0)
Oh thank you. But I have tried it( add parentheses), but failed
I tried
if(a[j] == 0) return 0;
in the for loop it give WA on test 5and diagnose : This application has requested the Runtime to terminate it in an unusual way.
when the statement :
a[i] >= 2
ok so you used set in the start so
a[j]
might get to 0try to add
if(j >= (int)a.size()) return 0;
to the same forit get WA on test 5 instead of RTE
here you go I add the line n = a.size()
see 56307859
Oh I see! a.size() may not be equal to n!!!! THX A Lot!!!