Astroflexx's blog

By Astroflexx, history, 8 months ago, In English

I attempted to solve this problem E — Count Sequences 2 from the recent ABC. This was my submission, using my modint template. But it received WA on 45 testcases. Replacing my template with taking mod with % passed easily (submission). Is there a bug in my modint template? Please help me out, I can't figure out any mistake. The template is taken mostly from the-tourist/algo and atcoder library.

  • Vote: I like it
  • -7
  • Vote: I do not like it

»
8 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

the unsigned int can fuck up the modulo if you under/over flow

»
8 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

The first submission wouldn't be correct with any modint implementation. Check diff between the two submissions.