/ 科创班 /

记录详情

Time Exceeded


  
# 状态 耗时 内存占用
#1 Time Exceeded ≥1000ms ≥192.0 KiB

代码

#include <stdio.h>
#include <ctype.h>
#define N 100

int
main(void)
{
    char c;
    int alpha = 0, num = 0, space = 0, other = 0;
    while ((c=getchar())!='\n')
    {
        if (isalpha(c))
            alpha++;
        else if (isalnum(c))
            num++;
        else if (isspace(c))
            space++;
        else
        other++;
    }
    printf("%d\n%d\n%d\n%d", alpha, num, space, other);
    return 0;
}

信息

递交者
类型
自测
题目
7.9统计个数
语言
C
递交时间
2018-10-26 11:25:41
评测时间
2018-10-26 11:25:41
评测机
分数
0
总耗时
≥1000ms
峰值内存
≥192.0 KiB