/ 科创班 /

记录详情

System Error


  
FileNotFoundError('output/output2.txt',)
# 状态 耗时 内存占用
#1 Accepted 26ms 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:38:03
评测时间
2018-10-17 21:38:03
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes