Given three integers ~A~, ~B~, and ~C~, output their sum.
1 1 1
3
Hint: think about the question (don't just add the 3 integers together) modulo a number
The following test case: 68987503198930283 91809266089038131 11550532150201171 causes most WA submissions so think about it.
I found the pattern
Is there a submission size limit for this question?
All problems have a submission size limit of 65536 characters.
Ah, that explains why my 90 mb solution for "Homework" isn't working
Comments
Hint: think about the question (don't just add the 3 integers together) modulo a number
The following test case: 68987503198930283 91809266089038131 11550532150201171 causes most WA submissions so think about it.
I found the pattern
Is there a submission size limit for this question?
All problems have a submission size limit of 65536 characters.
Ah, that explains why my 90 mb solution for "Homework" isn't working