中文字幕在线一区二区在线,久久久精品免费观看国产,无码日日模日日碰夜夜爽,天堂av在线最新版在线,日韩美精品无码一本二本三本,麻豆精品三级国产国语,精品无码AⅤ片,国产区在线观看视频

      ccf認證考試試題答案

      時間:2024-10-10 07:17:59 IBM認證 我要投稿
      • 相關推薦

      ccf認證考試試題答案

        CCF,中國計算機學會,英文全稱為China Computer Federation,簡稱CCF,成立于1962年,是中國計算機科學與技術領域群眾性學術團體,屬一級學會,獨立法人單位,是中國科學技術協會的成員。下面是小編整理的關于ccf認證考試試題答案,歡迎大家參考!

      ccf認證考試試題答案

        1. 出現次數最多的數

        import java.util.*;

        public class Main {

        public static void main(String[] args) {

        new Main().run();

        }

        public void run() {

        Scanner fin = new Scanner(System.in);

        int N = fin.nextInt();

        int[] count = new int[10001];

        for (int i = 0; i < N; ++i) {

        ++count[fin.nextInt()];

        }

        int maxCount = -1;

        int result = 0;

        for (int i = 1; i <= 10000; ++i) {

        if (count[i] > maxCount) {

        maxCount = count[i];

        result = i;

        }

        }

        System.out.println(result);

        }

        }

        2.ISBN號碼

        import java.io.BufferedReader;

        import java.io.InputStreamReader;

        public class Main {

        } public static void main(String args[]) { } BufferedReader bin = new BufferedReader(new InputStreamReader(System.in)); try{ } int sum=0;char cc='0'; String isbn_0 = bin.readLine(); String isbn = isbn_0.replace("-", ""); for(int i=0; i<9; i++){ } sum = sum % 11; if(sum == 10) cc = 'X';// else cc = (char)(sum+48); if(cc == isbn.charAt(9)) System.out.println("Right"); else{ } e.printStackTrace(); isbn_0 = isbn_0.substring(0,12) + cc; System.out.println(isbn_0); int ii = (int)isbn.charAt(i)-48; sum += ii * (i+1); }catch(Exception e){

        3.最大的矩形

        import java.util.*;

        public class Main {

        public static void main(String[] args) {

        new Main().run();

        }

        public void run() {

        Scanner fin = new Scanner(System.in);

        int N = fin.nextInt();

        int[] height = new int[N];

        for (int i = 0; i < N; ++i) height[i] = fin.nextInt();

        int result = 0;

        for (int i = 0; i < N; ++i) {

        int width = 1;

        for (int j = i - 1; j >= 0; --j) {

        if (height[j] < height[i]) break;

        ++width;

        }

        for (int j = i + 1; j < N; ++j) {

        if (height[j] < height[i]) break;

        ++width;

        }

        int area = width * height[i];

        result = Math.max(result, area);

        }

        System.out.println(result);

        }

        }

        4.有趣的數

        import java.util.*;

        public class Main {

        public static void main(String[] args) {

        new Main().run();

        }

        public void run() {

        Scanner fin = new Scanner(System.in);

        int N = fin.nextInt();

        long[] count = new long[8];

        count[6] = 0;

        count[7] = 1;

        long mod = 1000000007;

        for (int i = 2; i <= N; ++i) {

        long[] newCount = new long[8];

        newCount[0] = (count[0] * 2 + count[1] + count[3]) % mod; newCount[1] = (count[1] * 2 + count[2] + count[5]) % mod; newCount[2] = (count[2] + count[6]) % mod;

        newCount[3] = (count[3] * 2 + count[4] + count[5]) % mod; newCount[4] = (count[4] + count[7]) % mod;

        newCount[5] = (count[5] * 2 + count[6] + count[7]) % mod; newCount[6] = 0;

        newCount[7] = 1;

        count = newCount;

        }

        System.out.println(count[0]);

        }

        }

        5.I’m stuck!

        import java.util.*;

        public class Main {

        public static void main(String[] args) {

        new Main().run();

        }

        public void run() {

        Scanner fin = new Scanner(System.in);

        int R = fin.nextInt();

        int C = fin.nextInt();

        fin.nextLine();

        int[][] board = new int[R + 2][C + 2];

        int rowStart = 0, colStart = 0, rowEnd = 0, colEnd = 0; for (int i = 1; i <= R; ++i) {

        String line = fin.nextLine();

        for (int j = 1; j <= C; ++j) {

        char c = line.charAt(j - 1);

        switch (c) {

        case '#': break;

        case '-': board[i][j] = 5; break;

        case '|': board[i][j] = 0xA; break;

        case '+':

        case 'S':

        case 'T':

        board[i][j] = 0xF; break; case '.': board[i][j] = 0x8; break;

        default: break;

        }

        if (c == 'S') {

        rowStart = i;

        colStart = j;

        } else if (c == 'T') {

        rowEnd = i;

        colEnd = j;

        }

        }

        }

        int[] dr = new int[] {0, -1, 0, 1};

        int[] dc = new int[] {1, 0, -1, 0};

        // Scan 1: find all cells which can reach T

        boolean[][] visited = new boolean[R + 2][C + 2]; boolean[][] canReachT = new boolean[R + 2][C + 2]; initVisited(visited);

        canReachT[rowEnd][colEnd] = true;

        visited[rowEnd][colEnd] = true;

        Queue queue = new LinkedList(); queue.add(rowEnd);

        queue.add(colEnd);

        while (!queue.isEmpty()) {

        int r = queue.remove();

        int c = queue.remove();

        for (int i = 0; i < 4; ++i) {

        int nr = r + dr[i];

      【ccf認證考試試題答案】相關文章:

      IBM認證考試認證體系01-20

      微軟認證考試最新認證01-13

      微軟認證考試技巧:MCSA認證考試經驗01-13

      思科認證CCNA認證考試簡介06-08

      SUN認證考試流程01-15

      Oracle認證考試技巧03-19

      華為認證考試地址03-19

      微軟認證考試介紹01-10

      思科認證考試介紹01-12

      主站蜘蛛池模板: 中文字幕无码高清一区二区三区| 亚洲AV无码国产精品色午夜软件| 沅陵县| 亚洲熟妇免费在线视频| 久久免费精品视频老逼| 牟定县| 国产精品一区二区三区精品| 搡老女人老妇女老熟妇69| 一区二区三区国产97| 亚洲国产欲色有一二欲色| 亚洲妇女av一区二区| 在线播放中文字幕一区二区三区| 亚洲一区二区三区在线视频观看| 国产视频嗯啊啊啊| 亚洲色四在线视频观看| 久久无码高潮喷水抽搐| 97久久综合区小说区图片专区| 金门县| 岛国av一区二区三区| 成年女人窝窝视频| 青春草在线观看播放网站 | 宁晋县| 罗江县| 鄯善县| 敦煌市| 杨幂Av一区二区三区| 丰满熟妇人妻av无码区| 国产成人永久在线播放| 久久老子午夜精品无码| 亚洲一级无码AV毛片久久| 国产9 9在线 | 免费| 国产视频一区二区三区四区视频| 在线观看精品国产福利片87| 日韩无码尤物视频| 中国女人a毛片免费全部播放| 古蔺县| 国产福利97精品一区二区| 固安县| 亚洲免费日韩一区二区| 久久午夜无码鲁丝片直播午夜精品| 西乌珠穆沁旗|