Task: | Robotti |
Sender: | patchouli |
Submission time: | 2024-10-29 10:48:21 +0200 |
Language: | C |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#2 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#3 | WRONG ANSWER | 0.00 s | 1, 2 | details |
#4 | ACCEPTED | 0.00 s | 1, 2 | details |
#5 | WRONG ANSWER | 0.00 s | 1, 2 | details |
#6 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#7 | WRONG ANSWER | 0.00 s | 1, 2 | details |
#8 | ACCEPTED | 0.00 s | 1, 2 | details |
#9 | ACCEPTED | 0.00 s | 1, 2 | details |
#10 | WRONG ANSWER | 0.00 s | 1, 2 | details |
#11 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#12 | WRONG ANSWER | 0.12 s | 2 | details |
#13 | RUNTIME ERROR | 0.00 s | 2 | details |
#14 | WRONG ANSWER | 0.10 s | 2 | details |
#15 | WRONG ANSWER | 0.07 s | 2 | details |
#16 | RUNTIME ERROR | 0.00 s | 2 | details |
#17 | RUNTIME ERROR | 0.00 s | 2 | details |
#18 | TIME LIMIT EXCEEDED | -- | 2 | details |
#19 | TIME LIMIT EXCEEDED | -- | 2 | details |
#20 | ACCEPTED | 0.00 s | 2 | details |
#21 | TIME LIMIT EXCEEDED | -- | 2 | details |
#22 | TIME LIMIT EXCEEDED | -- | 2 | details |
#23 | TIME LIMIT EXCEEDED | -- | 2 | details |
#24 | RUNTIME ERROR | 0.00 s | 2 | details |
Compiler report
input/code.c: In function 'main': input/code.c:6:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result] 6 | scanf("%i\n", &n); | ^~~~~~~~~~~~~~~~~ input/code.c:8:3: warning: ignoring return value of 'fgets' declared with attribute 'warn_unused_result' [-Wunused-result] 8 | fgets(rooms, n, stdin); | ^~~~~~~~~~~~~~~~~~~~~~ input/code.c:58:12: warning: 'c2' may be used uninitialized in this function [-Wmaybe-uninitialized] 58 | rooms[c2] = 'R'; | ^ input/code.c:64:16: warning: 'c1' may be used uninitialized in this function [-Wmaybe-uninitialized] 64 | long int d1 = r - c1; | ^~ input/code.c:17:14: warning: 'c0' may be used uninitialized in this function [-Wmaybe-uninitialized] 17 | for (int i = c0; i < n; i++) { | ^ input/code.c:54:10: warning: 'r' may be used uninitialized in this function [-Wmaybe-uninitialized] 54 | r...
Code
#include <stdio.h> #include <stdlib.h> int main() { int n; scanf("%i\n", &n); char *rooms = calloc(n, sizeof(char)); fgets(rooms, n, stdin); long int r, c0, c1, c2, c5 = 0; char c4 = 0; long unsigned int coins = 0; long unsigned int odometer = 0; for (int j = 0; j < n; j++) { int c3 = 0; c4 = 0; // first pass: look out from the left for (int i = c0; i < n; i++) { char v = rooms[i]; if (v == 'R') { r = i; if (c4 == 2) { c1 = c3; c4 = 1; } else { c4 = 4; } } if (v == '*') { c5 = c3; c3 = i; if (c4 == 0) { c4 = 2; } else if (c4 == 1) { c2 = c3; c4 = 3; break; } else if (c4 == 4) { c2 = c3; //printf("FUCK %i\n",c3); break; } else { c1 = c3; }; } } /*for (int k = 0; k < n; k++) { if (k != c0) { printf("%c", rooms[k]); } else { printf("!"); } } printf("\n%lu\n", r);*/ rooms[r] = '.'; if (c4 == 4) { long int d2 = c2 - r; r = c2; rooms[c2] = 'R'; c0 = 0; odometer += d2; coins++; continue; } else if (c4 > 0) { long int d1 = r - c1; if (c4 == 3) { long int d2 = c2 - r; if (d1 > d2) { r = c2; rooms[c2] = 'R'; c0 = c5; odometer += d2; coins++; continue; } else if (d2 == d1) { break; } } r = c1; rooms[c1] = 'R'; odometer += d1; coins++; c0 = 0; } else { break; } } printf("%lu %lu\n", odometer, coins); }
Test details
Test 1
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
1 R |
correct output |
---|
0 0 |
user output |
---|
(empty) |
Test 2
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
10 ...R...... |
correct output |
---|
0 0 |
user output |
---|
(empty) |
Test 3
Group: 1, 2
Verdict: WRONG ANSWER
input |
---|
10 **.R...*** |
correct output |
---|
12 5 |
user output |
---|
11 10 |
Test 4
Group: 1, 2
Verdict: ACCEPTED
input |
---|
10 ***R****** |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 5
Group: 1, 2
Verdict: WRONG ANSWER
input |
---|
1000 R................................ |
correct output |
---|
947 9 |
user output |
---|
947 1000 |
Test 6
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
1000 ................................. |
correct output |
---|
886 9 |
user output |
---|
(empty) |
Test 7
Group: 1, 2
Verdict: WRONG ANSWER
input |
---|
1000 .....*..*....**..**..*......*.... |
correct output |
---|
1287 400 |
user output |
---|
2276 1000 |
Test 8
Group: 1, 2
Verdict: ACCEPTED
input |
---|
1000 ************.*****************... |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 9
Group: 1, 2
Verdict: ACCEPTED
input |
---|
1000 ******************************... |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 10
Group: 1, 2
Verdict: WRONG ANSWER
input |
---|
1000 R*****************************... |
correct output |
---|
999 999 |
user output |
---|
998 1000 |
Test 11
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
1000 ******************************... |
correct output |
---|
999 999 |
user output |
---|
(empty) |
Test 12
Group: 2
Verdict: WRONG ANSWER
input |
---|
10000 .......**........*...........*... |
correct output |
---|
10971 999 |
user output |
---|
10971 10000 |
Test 13
Group: 2
Verdict: RUNTIME ERROR
input |
---|
10000 *..*....*......*.....*..*........ |
correct output |
---|
9999 999 |
user output |
---|
(empty) |
Test 14
Group: 2
Verdict: WRONG ANSWER
input |
---|
10000 *.*.*...**.*...*....**.**.**..... |
correct output |
---|
18766 5000 |
user output |
---|
28764 10000 |
Test 15
Group: 2
Verdict: WRONG ANSWER
input |
---|
10000 R*****************************... |
correct output |
---|
9999 9999 |
user output |
---|
9998 10000 |
Test 16
Group: 2
Verdict: RUNTIME ERROR
input |
---|
10000 ******************************... |
correct output |
---|
9999 9999 |
user output |
---|
(empty) |
Test 17
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 ................................. |
correct output |
---|
0 0 |
user output |
---|
(empty) |
Test 18
Group: 2
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 ................................. |
correct output |
---|
299934 10000 |
user output |
---|
(empty) |
Test 19
Group: 2
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 **.***....**..**.....***.*..*.... |
correct output |
---|
299998 100000 |
user output |
---|
(empty) |
Test 20
Group: 2
Verdict: ACCEPTED
input |
---|
200000 ******************************... |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 21
Group: 2
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 R................................ |
correct output |
---|
133765 3 |
user output |
---|
(empty) |
Test 22
Group: 2
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 R................................ |
correct output |
---|
199982 5000 |
user output |
---|
(empty) |
Test 23
Group: 2
Verdict: TIME LIMIT EXCEEDED
input |
---|
200000 R*****************************... |
correct output |
---|
199999 199999 |
user output |
---|
(empty) |
Test 24
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 ******************************... |
correct output |
---|
199999 199999 |
user output |
---|
(empty) |