Submission #1797608


Source Code Expand

s = input()
l = len(s)

total = 0

for i in range(l):
    for j in range(l):
        if i < j:
            if s[i] == 'U':
                total += 1
            else:
                total += 2
        elif i > j:
            if s[i] == 'D':
                total += 1
            else:
                total += 2
print(total)

Submission Info

Submission Time
Task B - Evilator
User vjudge3
Language Python (3.4.3)
Score 0
Code Size 327 Byte
Status TLE
Exec Time 2104 ms
Memory 3188 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
AC × 2
AC × 4
TLE × 8
Set Name Test Cases
Sample s1.txt, s2.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, s1.txt, s2.txt
Case Name Status Exec Time Memory
01.txt TLE 2103 ms 3188 KB
02.txt TLE 2104 ms 3188 KB
03.txt TLE 2104 ms 3188 KB
04.txt TLE 2104 ms 3188 KB
05.txt TLE 2103 ms 3188 KB
06.txt TLE 2104 ms 3188 KB
07.txt TLE 2104 ms 3188 KB
08.txt TLE 2104 ms 3188 KB
09.txt AC 17 ms 2940 KB
10.txt AC 17 ms 2940 KB
s1.txt AC 17 ms 2940 KB
s2.txt AC 17 ms 2940 KB