27772023-01-23 21:58:08kohumarkBolha a számegyenesenpython3Elfogadva 100/10017ms13436 KiB
#chatgpt
n = int(input())
s = input()

# initialize current position to 0
current_position = 0

# iterate through the string of jumps
for jump in s:
    # if the jump is to the left, decrease the current position by 1
    if jump == "L":
        current_position -= 1
    # if the jump is to the right, increase the current position by 1
    elif jump == "R":
        current_position += 1

# the number of jumps to return home is the absolute value of the current position
print(abs(current_position))

RészfeladatÖsszpontTesztVerdiktIdőMemória
subtask10/0
1Elfogadva17ms11008 KiB
2Elfogadva17ms11360 KiB
subtask215/15
3Elfogadva17ms11448 KiB
4Elfogadva17ms11564 KiB
5Elfogadva17ms11544 KiB
6Elfogadva17ms12196 KiB
subtask310/10
7Elfogadva17ms12080 KiB
8Elfogadva17ms12188 KiB
9Elfogadva17ms11920 KiB
10Elfogadva17ms12264 KiB
11Elfogadva17ms12396 KiB
subtask475/75
12Elfogadva16ms12380 KiB
13Elfogadva17ms12416 KiB
14Elfogadva17ms12780 KiB
15Elfogadva17ms12724 KiB
16Elfogadva17ms12612 KiB
17Elfogadva17ms12952 KiB
18Elfogadva17ms13232 KiB
19Elfogadva17ms13180 KiB
20Elfogadva17ms13264 KiB
21Elfogadva17ms13436 KiB