CSES - Datatähti 2025 alku - Results
Submission details
Task:Robotti
Sender:Sode
Submission time:2024-10-29 11:06:06 +0200
Language:Python3 (CPython3)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#10.02 s1, 2details
#20.02 s1, 2details
#30.02 s1, 2details
#40.02 s1, 2details
#50.02 s1, 2details
#60.02 s1, 2details
#70.03 s1, 2details
#80.02 s1, 2details
#90.02 s1, 2details
#100.08 s1, 2details
#110.07 s1, 2details
#120.51 s2details
#130.41 s2details
#14--2details
#150.00 s2details
#16--2details
#170.03 s2details
#180.00 s2details
#190.00 s2details
#200.03 s2details
#210.06 s2details
#220.00 s2details
#230.00 s2details
#24--2details

Code

HuoneidenMaara = int(input())
Maailma = list(input())
RobottiSijainti = int(Maailma.index('R'))
ero = 0
löytyi = 0
löytäjä =0
matka = 0
kolikot = 0
def ennen():
    global matka, kolikot, RobottiSijainti, Maailma
    matka+=a+1
    kolikot+=1
    Maailma[RobottiSijainti] = '.'
    Maailma[RobottiSijainti-a-1] = 'R'
def jalkeen():
    global matka, kolikot, RobottiSijainti, Maailma
    matka+=b+1
    kolikot+=1
    Maailma[RobottiSijainti] = '.'
    Maailma[RobottiSijainti+b+1] = 'R'
while True:
    RobottiSijainti = Maailma.index('R')
    print(''.join(Maailma))
    try:
        Maailma.index('*')
    except:
        break
    before_r = list(reversed(Maailma[:RobottiSijainti]))
    after_r = Maailma[RobottiSijainti + 1:]
    try:
        a = before_r.index('*')
        löytyi+=1
        löytäjä = 1
    except:
        ero+=1
    try:
        b= after_r.index('*')
        löytyi+=1
        löytäjä = 2
    except:
        ero+=1
    if löytyi == 2:
        if a<b:
            ennen()
            löytyi = 0
        elif b<a:
            jalkeen()
            löytyi = 0
        else:
            break
    elif löytyi==0:
        break
    else:
        if löytäjä ==1:
            ennen()
            löytyi = 0
        else:
            jalkeen()
            löytyi = 0
print(matka, kolikot)

Test details

Test 1

Group: 1, 2

Verdict:

input
1
R

correct output
0 0

user output
R
0 0

Test 2

Group: 1, 2

Verdict:

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

correct output
0 0

user output
...R......
0 0

Test 3

Group: 1, 2

Verdict:

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

correct output
12 5

user output
**.R...***
*R.....***
R......***
.......R**
........R*
...

Test 4

Group: 1, 2

Verdict:

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

correct output
0 0

user output
***R******
0 0

Test 5

Group: 1, 2

Verdict:

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

correct output
947 9

user output
R................................

Test 6

Group: 1, 2

Verdict:

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

correct output
886 9

user output
.................................

Test 7

Group: 1, 2

Verdict:

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

correct output
1287 400

user output
.....*..*....**..**..*......*....

Test 8

Group: 1, 2

Verdict:

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

correct output
0 0

user output
************.*****************...

Test 9

Group: 1, 2

Verdict:

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

correct output
0 0

user output
******************************...

Test 10

Group: 1, 2

Verdict:

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

correct output
999 999

user output
R*****************************...

Test 11

Group: 1, 2

Verdict:

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

correct output
999 999

user output
******************************...

Test 12

Group: 2

Verdict:

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

correct output
10971 999

user output
.......**........*...........*...

Test 13

Group: 2

Verdict:

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

correct output
9999 999

user output
*..*....*......*.....*..*........

Test 14

Group: 2

Verdict:

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

correct output
18766 5000

user output
(empty)

Test 15

Group: 2

Verdict:

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

correct output
9999 9999

user output
(empty)

Test 16

Group: 2

Verdict:

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

correct output
9999 9999

user output
(empty)

Test 17

Group: 2

Verdict:

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

correct output
0 0

user output
.................................

Test 18

Group: 2

Verdict:

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

correct output
299934 10000

user output
(empty)

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
******************************...

Test 21

Group: 2

Verdict:

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

correct output
133765 3

user output
R................................

Test 22

Group: 2

Verdict:

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

correct output
199982 5000

user output
(empty)

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)