/ 科创班 /

记录详情

Accepted


  
# 状态 耗时 内存占用
#1 Accepted 13ms 256.0 KiB
#2 Accepted 11ms 256.0 KiB
#3 Accepted 25ms 256.0 KiB
#4 Accepted 35ms 256.0 KiB
#5 Accepted 35ms 256.0 KiB

代码

#include <stdio.h>

int main()
{
    int i, n;
    scanf("%d", &n); 
    for (i = 10000; i < 100000; i++)
    {
        int a = i / 10000;
        int b = (i % 10000) / 1000;
        int c = (i % 1000) / 100;
        int d = (i % 100) / 10;
        int e = i % 10;
        if (a == e && b == d && a+b+c+d+e == n)
            printf("%d\n", i);
    }
    for (i = 100000; i < 1000000; i++)
    {
        int a = i / 100000;
        int b = (i % 100000) / 10000;
        int c = (i % 10000) / 1000;
        int d = (i % 1000) / 100;
        int e = (i % 100) / 10;
        int f = i % 10;
        if (a == f && b == e && c == d && a+b+c+d+e+f == n)
            printf("%d\n", i);
    }
    return 0;
}

信息

递交者
类型
递交
题目
特殊回文数 c
题目数据
下载
语言
C
递交时间
2018-10-17 21:39:48
评测时间
2018-10-17 21:39:48
评测机
分数
100
总耗时
121ms
峰值内存
256.0 KiB