PAT (Basic Level) 1012 数字分类

给定一系列正整数,请按要求对数字进行分类,并输出以下 5 个数字:

A1= 能被 5 整除的数字中所有偶数的和;
A2= 将被 5 除后余 1 的数字按给出顺序进行交错求和,即计算n1-n2+n3-n4⋯;
A3= 被 5 除后余 2 的数字的个数;
A4= 被 5 除后余 3 的数字的平均数,精确到小数点后 1 位;
A5= 被 5 除后余 4 的数字中最大数字。
输入格式:
每个输入包含 1 个测试用例。每个测试用例先给出一个不超过 1000 的正整数 N,随后给出 N 个不超过 1000 的待分类的正整数。数字间以空格分隔。

输出格式:
对给定的 N 个正整数,按题目要求计算 A​1~A​5并在一行中顺序输出。数字间以空格分隔,但行末不得有多余空格。

若其中某一类数字不存在,则在相应位置输出 N。

输入样例 1:

13 1 2 3 4 5 6 7 8 9 10 20 16 18

输出样例 1:

30 11 2 9.7 9

输入样例 2:

8 1 2 4 5 6 7 9 16

输出样例 2:

N 11 2 N 9

分析:
若其中某一类数字不存在,则在相应位置输出 N。 对于A2应该判断如果这类数字不存在则输出N,否则输出A2

C语言:

#include 

int main() {
    int N, a;
    scanf("%d", &N);
    int A1 = 0, A2 = 0, A3 = 0, A4sum = 0, A4count = 0, A5 = 0;
    int A2flag = 0;
    for (int i = 0; i < N; i++) {
        scanf("%d", &a);
        switch (a % 5) {
            case 0:
                A1 += (a % 2) == 0 ? a : 0;
                break;
            case 1:
                A2flag = A2flag == 1 ? -1 : 1;
                A2 += a * A2flag;
                break;
            case 2:
                A3++;
                break;
            case 3:
                A4sum += a;
                A4count++;
                break;
            case 4:
                A5 = (a > A5) ? a : A5;
                break;
        }
    }
    if (A1 == 0) {
        printf("N ");
    } else {
        printf("%d ", A1);
    }
    if (A2flag == 0) {
        printf("N ");
    } else {
        printf("%d ", A2);
    }
    if (A3 == 0) {
        printf("N ");
    } else {
        printf("%d ", A3);
    }
    if (A4sum == 0) {
        printf("N ");
    } else {
        printf("%.1f ", (A4sum * 1.0) / A4count);
    }
    if (A5 == 0) {
        printf("N");
    } else {
        printf("%d", A5);
    }
}

Java语言:

import java.math.BigDecimal;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int[] arr = new int[N];
        for (int i = 0; i < N; i++) {
            arr[i] = sc.nextInt();
        }
        int A1 = 0, A2 = 0, A3 = 0,A4sum = 0, A5 = 0;
        int A2flag = 0, count = 0;
        for (int i : arr) {
            if (i % 10 == 0) {
                A1 += i;
            }
            if (i % 5 == 1) {
                A2flag = A2flag == 1 ? -1 : 1;
                A2 = A2 + i * A2flag;
            }
            if (i % 5 == 2) {
                A3++;
            }
            if (i % 5 == 3) {
                A4sum += i;
                count++;
            }
            if (i % 5 == 4 && i > A5) {
                A5 = i;
            }
        }
        System.out.print((A1 == 0 ? "N" : A1) + " " + (A2flag == 0 ? "N" : A2) + " " + (A3 == 0 ? "N" : A3) + " " + (A4sum == 0 ? "N" : String.format("%.1f", (A4sum * 1.0) / count)) + " " + (A5 == 0 ? "N" : A5));
    }
}

你可能感兴趣的:(PAT (Basic Level) 1012 数字分类)