8.21滴滴笔试的两道编程题

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main39 {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        List<String> res = new ArrayList<>();
        for (char a = '1'; a <= '9'; a++) {
            for (char b = '0'; b <= '9'; b++) {
                for (char c = '0'; c <= '9'; c++) {
                    if (a != b && a != c && b != c) {
                        int abc = (a - '0') * 100 + (b - '0') * 10 + (c - '0');
                        int acc = (a - '0') * 100 + (c - '0') * 10 + (c - '0');
                        if ((abc + acc) == n){
                            res.add(abc + " " + acc);
                        }
                    }
                }
            }
        }
        System.out.println(res.size());
        res.forEach(s -> System.out.println(s));
    }
}
import java.util.Scanner;

public class Main40 {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        if (n == 1) {
            System.out.println(1);
            return;
        }
        long[] array = new long[n * n];
        array[0] = array[1] = 1L;
        for (int i = 2; i < array.length; i++) {
            array[i] = array[i - 2] + array[i - 1];
        }
        long[][] res = new long[n][n];
        int index = n * n - 1;
        for (int i = 0; i <= n / 2; i++) {
            for (int top = i; top < n - i; top++) {//上
                res[i][top] = array[index--];
            }
            for (int right = i + 1; right < n - i; right++) {//右
                res[right][n - i - 1] = array[index--];
            }
            for (int bottom = n - i - 2; bottom >= i; bottom--) {//下
                res[n - i - 1][bottom] = array[index--];
            }
            for (int left = n - i - 2; left >= i + 1; left--) {//左
                res[left][i] = array[index--];
            }

        }
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                if (j != n - 1){
                    System.out.print(res[i][j] + " ");
                }else {
                    System.out.println(res[i][j]);
                }
            }
        }
    }
}
比较简单,大佬就别看了!

#笔试题目##滴滴#
全部评论
第一次全ac?这么急着秀一下?这考试都没结束呢。。。。。。
点赞
送花
回复
分享
发布于 2020-08-21 20:30
谢谢大佬😭,祝您拿offer
点赞
送花
回复
分享
发布于 2020-08-21 20:38
秋招专场
校招火热招聘中
官网直投
 Collections.sort(res);
点赞
送花
回复
分享
发布于 2020-08-21 23:13
求题目
点赞
送花
回复
分享
发布于 2020-08-21 23:29
第二题为啥需要用long
点赞
送花
回复
分享
发布于 2020-08-21 23:47
想知道第二贴的放入数组的思路。。属实是看不懂这个n代表什么。😅 先谢谢大佬了。
点赞
送花
回复
分享
发布于 2020-08-22 19:44

相关推荐

8 12 评论
分享
牛客网
牛客企业服务