题解 | #买房#

买房

http://www.nowcoder.com/practice/edf9346066f047a9833b3284798d6c29

import java.io.*;
import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int num = sc.nextInt();
        for(int i = 0; i < num; ++i){
            int n = sc.nextInt();
            int k = sc.nextInt();
            int[] res = fun(n, k);
            System.out.println(res[0] + " " + res[1]);
        }
    }

    public static int[] fun(int n , int k){
        int maxV = 0;
        if(n <= 2){
            return new int[]{0,0};
        }else if(n - k < k - 1){
            maxV = n - k;
        }else if(n - k >= k - 1){
            maxV = k - 1;
        }
        maxV = maxV < 0 ? 0 : maxV;
        return new int[]{0, maxV};
    }
}
全部评论

相关推荐

我已成为0offer的糕手:别惯着,胆子都是练出来的,这里认怂了,那以后被裁应届被拖工资还敢抗争?
点赞 评论 收藏
分享
11-24 11:23
门头沟学院 C++
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务