CSES - Datatähti 2025 alku - Results
Submission details
Task:Robotti
Sender:foxsauce
Submission time:2024-10-28 18:50:34 +0200
Language:Python3 (PyPy3)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#10.07 s1, 2details
#20.07 s1, 2details
#30.06 s1, 2details
#40.07 s1, 2details
#50.07 s1, 2details
#60.07 s1, 2details
#70.07 s1, 2details
#80.08 s1, 2details
#90.08 s1, 2details
#100.08 s1, 2details
#11ACCEPTED0.06 s1, 2details
#120.08 s2details
#13ACCEPTED0.06 s2details
#14ACCEPTED0.10 s2details
#150.11 s2details
#16ACCEPTED0.14 s2details
#170.08 s2details
#180.17 s2details
#19--2details
#20--2details
#210.08 s2details
#220.11 s2details
#23--2details
#24--2details

Code

n = int(input())
huoneet = list(input())

sijainti = huoneet.index('R')
kolikot = [i for i in range(n) if huoneet[i]=='*']

data = [0,0]    # askeleet, kolikot

if sijainti in kolikot:
    indeksi = kolikot.index(sijainti)
else:
    lähimmät = sorted(kolikot, key=lambda x: abs(sijainti-x))[0:2]
    data[0] += abs(sijainti-lähimmät[0])
    data[1] += 1
    sijainti = lähimmät[0]
    indeksi = kolikot.index(sijainti)
    kolikot.remove(sijainti)


while True:
    lähimmät = sorted(kolikot[max(0,indeksi-3): min(indeksi+3, n)], key=lambda x: abs(sijainti-x))[0:2]
    if sum(lähimmät)/2==sijainti:
        break

    data[0] += abs(sijainti-lähimmät[0])
    data[1] += 1
    sijainti = lähimmät[0]
    indeksi = kolikot.index(sijainti)
    kolikot.remove(sijainti)

print(data[0], data[1])

Test details

Test 1

Group: 1, 2

Verdict:

input
1
R

correct output
0 0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 14, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 2

Group: 1, 2

Verdict:

input
10
...R......

correct output
0 0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 14, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 3

Group: 1, 2

Verdict:

input
10
**.R...***

correct output
12 5

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 26, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 4

Group: 1, 2

Verdict:

input
10
***R******

correct output
0 0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 26, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 5

Group: 1, 2

Verdict:

input
1000
R................................

correct output
947 9

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 26, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 6

Group: 1, 2

Verdict:

input
1000
.................................

correct output
886 9

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 26, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 7

Group: 1, 2

Verdict:

input
1000
.....*..*....**..**..*......*....

correct output
1287 400

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 26, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 8

Group: 1, 2

Verdict:

input
1000
************.*****************...

correct output
0 0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 26, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 9

Group: 1, 2

Verdict:

input
1000
******************************...

correct output
0 0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 26, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 10

Group: 1, 2

Verdict:

input
1000
R*****************************...

correct output
999 999

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 26, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 11

Group: 1, 2

Verdict: ACCEPTED

input
1000
******************************...

correct output
999 999

user output
999 999

Test 12

Group: 2

Verdict:

input
10000
.......**........*...........*...

correct output
10971 999

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 26, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 13

Group: 2

Verdict: ACCEPTED

input
10000
*..*....*......*.....*..*........

correct output
9999 999

user output
9999 999

Test 14

Group: 2

Verdict: ACCEPTED

input
10000
*.*.*...**.*...*....**.**.**.....

correct output
18766 5000

user output
18766 5000

Test 15

Group: 2

Verdict:

input
10000
R*****************************...

correct output
9999 9999

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 26, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 16

Group: 2

Verdict: ACCEPTED

input
10000
******************************...

correct output
9999 9999

user output
9999 9999

Test 17

Group: 2

Verdict:

input
200000
.................................

correct output
0 0

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 14, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 18

Group: 2

Verdict:

input
200000
.................................

correct output
299934 10000

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 26, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 19

Group: 2

Verdict:

input
200000
**.***....**..**.....***.*..*....

correct output
299998 100000

user output
(empty)

Test 20

Group: 2

Verdict:

input
200000
******************************...

correct output
0 0

user output
(empty)

Test 21

Group: 2

Verdict:

input
200000
R................................

correct output
133765 3

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 26, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 22

Group: 2

Verdict:

input
200000
R................................

correct output
199982 5000

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 26, in <module>
    data[0] += abs(sijainti-lähimmät[0])
IndexError: list index out of range

Test 23

Group: 2

Verdict:

input
200000
R*****************************...

correct output
199999 199999

user output
(empty)

Test 24

Group: 2

Verdict:

input
200000
******************************...

correct output
199999 199999

user output
(empty)