编号 题目 状态 分数 总时间 内存 代码 / 答案文件 提交者 提交时间
#23268 #2044. 芙宁娜的小蛋糕 Judgement Failed 50 60 ms 292 K C / 601 B 192022211751 2024-12-15 20:17:38
显示原始代码
#include <stdio.h>

int main() {
    int T;
    scanf("%d", &T);
    if (T < 1 || T > 100000) {
        return 0;
    }
    int num[100000];
    for (int i = 0; i < T; i++) {
        scanf("%d", &num[i]);
        if (num[i] <= 1 || num[i] >= 1000000000) {
            return 0;
        }
    }
    for (int i = 0; i < T; i++) {
        long long x = num[i] + 1;
        if (x <= 1 || x > 2000000000LL / (x - 1)) {
            return 0;
        }
        long long y = x * (x - 1);
        long long z = x - 1;
        printf("%lld %lld %lld\n", x, y, z);
    }
    return 0;
}
子任务 #1
Judgement Failed
得分:50
测试点 #1
Accepted
得分:100
用时:3 ms
内存:204 KiB

输入文件(test1.in

15
49
2
58
26
70
27
89
53
92
74
66
8
46
38
12

用户输出

50 2450 49
3 6 2
59 3422 58
27 702 26
71 4970 70
28 756 27
90 8010 89
54 2862 53
93 8556 92
75 5550 74
67 4422 66
9 72 8
47 2162
<25 bytes omitted>

系统信息

Exited with return code 0
测试点 #2
Accepted
得分:100
用时:3 ms
内存:192 KiB

输入文件(test2.in

15
24
100
30
35
92
35
28
74
53
6
70
36
85
45
64

用户输出

25 600 24
101 10100 100
31 930 30
36 1260 35
93 8556 92
36 1260 35
29 812 28
75 5550 74
54 2862 53
7 42 6
71 4970 70
37 1332 36

<33 bytes omitted>

系统信息

Exited with return code 0
测试点 #3
Accepted
得分:100
用时:3 ms
内存:284 KiB

输入文件(test3.in

15
62
82
30
82
74
32
12
2
8
66
69
38
42
18
50

用户输出

63 3906 62
83 6806 82
31 930 30
83 6806 82
75 5550 74
33 1056 32
13 156 12
3 6 2
9 72 8
67 4422 66
70 4830 69
39 1482 38
43 1806
<25 bytes omitted>

系统信息

Exited with return code 0
测试点 #4
Accepted
得分:100
用时:3 ms
内存:200 KiB

输入文件(test4.in

15
18
100
8
78
91
97
64
22
64
80
47
30
32
23
66

用户输出

19 342 18
101 10100 100
9 72 8
79 6162 78
92 8372 91
98 9506 97
65 4160 64
23 506 22
65 4160 64
81 6480 80
48 2256 47
31 930 30

<32 bytes omitted>

系统信息

Exited with return code 0
测试点 #5
Accepted
得分:100
用时:3 ms
内存:196 KiB

输入文件(test5.in

15
42
98
87
72
14
2
86
82
39
61
61
101
7
24
50

用户输出

43 1806 42
99 9702 98
88 7656 87
73 5256 72
15 210 14
3 6 2
87 7482 86
83 6806 82
40 1560 39
62 3782 61
62 3782 61
102 10302 101
<29 bytes omitted>

系统信息

Exited with return code 0
测试点 #6
Accepted
得分:100
用时:3 ms
内存:284 KiB

输入文件(test6.in

15
14
82
86
2
12
92
90
86
97
2
78
82
18
54
14

用户输出

15 210 14
83 6806 82
87 7482 86
3 6 2
13 156 12
93 8556 92
91 8190 90
87 7482 86
98 9506 97
3 6 2
79 6162 78
83 6806 82
19 342 1
<23 bytes omitted>

系统信息

Exited with return code 0
测试点 #7
Accepted
得分:100
用时:3 ms
内存:192 KiB

输入文件(test7.in

15
56
49
86
2
11
6
86
49
72
84
46
87
2
66
96

用户输出

57 3192 56
50 2450 49
87 7482 86
3 6 2
12 132 11
7 42 6
87 7482 86
50 2450 49
73 5256 72
85 7140 84
47 2162 46
88 7656 87
3 6 2

<22 bytes omitted>

系统信息

Exited with return code 0
测试点 #8
Accepted
得分:100
用时:3 ms
内存:196 KiB

输入文件(test8.in

15
94
98
80
77
101
3
44
2
46
82
40
24
15
86
98

用户输出

95 8930 94
99 9702 98
81 6480 80
78 6006 77
102 10302 101
4 12 3
45 1980 44
3 6 2
47 2162 46
83 6806 82
41 1640 40
25 600 24
16 
<29 bytes omitted>

系统信息

Exited with return code 0
测试点 #9
Accepted
得分:100
用时:3 ms
内存:196 KiB

输入文件(test9.in

15
4
32
80
22
18
70
62
90
34
77
100
6
40
24
81

用户输出

5 20 4
33 1056 32
81 6480 80
23 506 22
19 342 18
71 4970 70
63 3906 62
91 8190 90
35 1190 34
78 6006 77
101 10100 100
7 42 6
41 
<29 bytes omitted>

系统信息

Exited with return code 0
测试点 #10
Accepted
得分:100
用时:3 ms
内存:192 KiB

输入文件(test10.in

15
34
90
2
2
9
70
91
67
72
72
90
71
26
28
71

用户输出

35 1190 34
91 8190 90
3 6 2
3 6 2
10 90 9
71 4970 70
92 8372 91
68 4556 67
73 5256 72
73 5256 72
91 8190 90
72 5112 71
27 702 26
<22 bytes omitted>

系统信息

Exited with return code 0
测试点 #11
Judgement Failed
得分:0
用时:3 ms
内存:196 KiB

输入文件(test11.in

100000
757149
167851002
301413358
336971126
659598370
160567227
391749389
4890853
35766292
<1062824 bytes omitted>

Special Judge 信息

Special Judge returned an unrecoginzed score: .

系统信息

Exited with return code 0
测试点 #12
Judgement Failed
得分:0
用时:3 ms
内存:288 KiB

输入文件(test12.in

100000
388526385
167178296
5797002
179597342
343191872
258689190
42351134
147820952
1275653
<1062696 bytes omitted>

Special Judge 信息

Special Judge returned an unrecoginzed score: .

系统信息

Exited with return code 0
测试点 #13
Judgement Failed
得分:0
用时:3 ms
内存:204 KiB

输入文件(test13.in

100000
115913290
201095
57736252
369868052
695962364
64768898
96057388
645998786
256252754
<1062452 bytes omitted>

Special Judge 信息

Special Judge returned an unrecoginzed score: .

系统信息

Exited with return code 0
测试点 #14
Judgement Failed
得分:0
用时:3 ms
内存:288 KiB

输入文件(test14.in

100000
206495012
695164733
117412535
213191456
103236564
249658654
173057476
144950642
3921
<1062488 bytes omitted>

Special Judge 信息

Special Judge returned an unrecoginzed score: .

系统信息

Exited with return code 0
测试点 #15
Judgement Failed
得分:0
用时:3 ms
内存:196 KiB

输入文件(test15.in

100000
76467998
636722920
322721819
627554380
618858935
22121156
437103970
47962090
3041548
<1062727 bytes omitted>

Special Judge 信息

Special Judge returned an unrecoginzed score: .

系统信息

Exited with return code 0
测试点 #16
Judgement Failed
得分:0
用时:3 ms
内存:288 KiB

输入文件(test16.in

100000
230797514
251755385
86525558
98616322
52775434
147068837
525792176
15465352
11535660
<1062669 bytes omitted>

Special Judge 信息

Special Judge returned an unrecoginzed score: .

系统信息

Exited with return code 0
测试点 #17
Judgement Failed
得分:0
用时:3 ms
内存:292 KiB

输入文件(test17.in

100000
71493907
451327512
143831677
61901150
499136666
245588576
182742369
654776267
385968
<1062634 bytes omitted>

Special Judge 信息

Special Judge returned an unrecoginzed score: .

系统信息

Exited with return code 0
测试点 #18
Judgement Failed
得分:0
用时:3 ms
内存:196 KiB

输入文件(test18.in

100000
692857962
410435586
60993992
776048264
199867103
368330978
71255333
804599084
187734
<1062724 bytes omitted>

Special Judge 信息

Special Judge returned an unrecoginzed score: .

系统信息

Exited with return code 0
测试点 #19
Judgement Failed
得分:0
用时:3 ms
内存:280 KiB

输入文件(test19.in

100000
72972744
129884942
133713810
50663369
278397277
8849570
142972418
69058257
248165402
<1062781 bytes omitted>

Special Judge 信息

Special Judge returned an unrecoginzed score: .

系统信息

Exited with return code 0
测试点 #20
Judgement Failed
得分:0
用时:3 ms
内存:288 KiB

输入文件(test20.in

100000
194646211
177969602
420998261
556762128
37261842
119761840
170055539
123864862
68103
<1062971 bytes omitted>

Special Judge 信息

Special Judge returned an unrecoginzed score: .

系统信息

Exited with return code 0