給四個參數 $a, b, c, d$ 依照參數輸出答案
$Ans = a ^ c + (a+b) ^ c + (a+b+b) ^ c + (a+b+b+b) ^ c + \cdots + d ^ c$
保證 $(d - a) \mod b = 0$ 且 $d > a$。
輸入四個正整數 $a, b, c, d \le 1000$。
輸出答案。由於答案可能會很大,所以聰明的你一定會 $\mod 10 ^ 6$。
原TIOJ1286 / 雄中公假社'08 入退社考。Problem Setter:ggm。
2021.03.11 Update: Added $\LaTeX$ by FHVirus
No. | Testdata Range | Score |
---|---|---|
1 | 0 | 20 |
2 | 1 | 20 |
3 | 2 | 20 |
4 | 3 | 20 |
5 | 4 | 20 |