首页 > 牛客巅峰赛S2青铜组第十场B题
头像
六娃lw
编辑于 2020-12-19 11:22
+ 关注

牛客巅峰赛S2青铜组第十场B题

黄金组第B题
import java.util.*;
 
 
public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * @param n int整型
     * @param a int整型一维数组
     * @return int整型
     */
    public int wwork (int n, int[] a) {
        // write code here
        int minV = a[n - 1];
        int count = 0;
        for(int i = n - 1; i > 0; --i){
            if(a[i - 1] > minV){
                count++;
            }else{
                minV = a[i - 1];
            }
        }
        return count;
    }
}


全部评论

(0) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期精华帖

热门推荐