定义函数 f(x) = x^a + x^(a+1) +...+ x^(b-1) + x^b,然后在给定a和b的情况下,求f(x)%10000000033的值。
示例1
输入
1,3,2
输出
14
说明
f(2) = 2^1 + 2^2 + 2^3 = 14
备注:
其中0=x,a,b=1e9, 且 a=b
加载中...
import java.util.*; public class Solution { /** * * @param a int整型 * @param b int整型 * @param n int整型 * @return long长整型 */ public long solve (int a, int b, int n) { // write code here } }
class Solution { public: /** * * @param a int整型 * @param b int整型 * @param n int整型 * @return long长整型 */ long long solve(int a, int b, int n) { // write code here } };
# # # @param a int整型 # @param b int整型 # @param n int整型 # @return long长整型 # class Solution: def solve(self , a , b , n ): # write code here
/** * * @param a int整型 * @param b int整型 * @param n int整型 * @return long长整型 */ function solve( a , b , n ) { // write code here } module.exports = { solve : solve };
# # # @param a int整型 # @param b int整型 # @param n int整型 # @return long长整型 # class Solution: def solve(self , a , b , n ): # write code here
package main /** * * @param a int整型 * @param b int整型 * @param n int整型 * @return long长整型 */ func solve( a int , b int , n int ) int64 { // write code here }
1,3,2
14