现在给定一个数组arr,和a,b两个数字,你要做的就是找到(i,j,k)。且满足 1. 0 2. arr[i] - arr[j] 3. arr[j] - arr[k] 统计满足条件的个数并返回(最后结果可能很大,请取1000000007的余数)。
示例1
输入
[7,1,8,9,0],3,3
输出
1
说明
只有(7,8,9)符合要求
备注:
arr.size() 其余变量均
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param arr int整型一维数组 * @param a int整型 * @param b int整型 * @return int整型 */ public int countTriplets (int[] arr, int a, int b) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param arr int整型vector * @param a int整型 * @param b int整型 * @return int整型 */ int countTriplets(vector
& arr, int a, int b) { // write code here } };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # @param arr int整型一维数组 # @param a int整型 # @param b int整型 # @return int整型 # class Solution: def countTriplets(self , arr , a , b ): # write code here
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param arr int整型一维数组 * @param a int整型 * @param b int整型 * @return int整型 */ function countTriplets( arr , a , b ) { // write code here } module.exports = { countTriplets : countTriplets };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # @param arr int整型一维数组 # @param a int整型 # @param b int整型 # @return int整型 # class Solution: def countTriplets(self , arr , a , b ): # write code here
package main /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param arr int整型一维数组 * @param a int整型 * @param b int整型 * @return int整型 */ func countTriplets( arr []int , a int , b int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param arr int整型一维数组 * @param arrLen int arr数组长度 * @param a int整型 * @param b int整型 * @return int整型 */ int countTriplets(int* arr, int arrLen, int a, int b ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # @param arr int整型一维数组 # @param a int整型 # @param b int整型 # @return int整型 # class Solution def countTriplets(arr, a, b) # write code here end end
[7,1,8,9,0],3,3
1