编号 题目 状态 分数 总时间 内存 代码 / 答案文件 提交者 提交时间
#19332 #2015. shenchuan的CF段位 Wrong Answer 50 5 ms 312 K C / 974 B 192022214156 2024-10-19 17:53:59
显示原始代码
#include <stdio.h>
#include <stdlib.h>
int main() {
    int n, i, j;
    long long b[1001];
    scanf("%d", &n);
    for (i = 1; i <= n; i++) {
        scanf("%d", &b[i]);
    }
    for (j = 1; j <= n; j++) {
        if (b[j] >= 0 && b[j] < 1200)
            printf("Newbie No\n");
        else if (b[j] >= 1200 && b[j] < 1400)
            printf("Pupil No\n");
        else if (b[j] >= 1400 && b[j] < 1600)
            printf("Specialist No\n");
        else if (b[j] >= 1600 && b[j] < 1700)
            printf("Expert No\n");
        else if (b[j] >= 1700 && b[j] < 1900)
            printf("Expert Yes\n");
        else if (b[j] >= 1900 && b[j] < 2100)
            printf("Candidate Master Yes\n");
        else if (b[j] >= 2100 && b[j] < 2300)
            printf("Master Yes\n");
        else if (b[j] >= 2300 && b[j] < 2400)
            printf(" International Master Yes\n");
        else if (b[j] >= 2400 && b[j] < 2600)
            printf("Grandmaster Yes\n");
        else if (b[j] >= 2600 && b[j] < 3000)
            printf("International Grandmaster Yes\n");
        else if (b[j] >= 3000 && b[j] < 4000)
            printf("Legendary Grandmaster Yes\n");
        else if (b[j] >= 4000)
            printf("Tourist Yes\n");
    }
    return 0;
}
子任务 #1
Wrong Answer
得分:50
测试点 #1
Accepted
得分:100
用时:2 ms
内存:288 KiB

输入文件(1.in

20
3669
3865
3122
1249
2086
3643
730
3342
1452
1304
3535
3886
3592
1251
3370
1071
3
<23 bytes omitted>

答案文件(1.out

Legendary Grandmaster Yes
Legendary Grandmaster Yes
Legendary Grandmaster Yes
Pupil No
Candidate
<319 bytes omitted>

用户输出

Legendary Grandmaster Yes
Legendary Grandmaster Yes
Legendary Grandmaster Yes
Pupil No
Candidate Master Yes
Legendary Grandmaste
<271 bytes omitted>

系统信息

Exited with return code 0
测试点 #2
Wrong Answer
得分:0
用时:3 ms
内存:312 KiB

输入文件(2.in

1000
259
2414
4622
4211
3558
1968
4316
715
780
1652
1641
452
318
4342
2438
3835
425
<5672 bytes omitted>

答案文件(2.out

Newbie No
Grandmaster Yes
Tourist Yes
Tourist Yes
Legendary Grandmaster Yes
Candidate Master Ye
<17217 bytes omitted>

用户输出

Newbie No
Grandmaster Yes
Tourist Yes
Tourist Yes
Legendary Grandmaster Yes
Candidate Master Yes
Tourist Yes
Newbie No
Newbie No
<15099 bytes omitted>

Special Judge 信息

Files user_out and answer differ

系统信息

Exited with return code 0