Submission #2388019


Source Code Expand

N = int(input())
A = list(map(int, input().strip().split()))
A = [0] + A + [0]

Diff = [abs(A[i]-A[i+1]) for i in range(N+1) ]

for j in range(N):
        print(sum(Diff)-sum(Diff[j:j+2])+abs(A[j]-A[j+2]))

Submission Info

Submission Time
Task C - Traveling Plan
User timoni
Language Python (3.4.3)
Score 0
Code Size 212 Byte
Status TLE
Exec Time 2104 ms
Memory 13920 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 3
AC × 4
TLE × 11
Set Name Test Cases
Sample sample-01.txt, sample-02.txt, sample-03.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, sample-01.txt, sample-02.txt, sample-03.txt
Case Name Status Exec Time Memory
01.txt TLE 2104 ms 13916 KB
02.txt TLE 2104 ms 13784 KB
03.txt AC 17 ms 2940 KB
04.txt TLE 2104 ms 13792 KB
05.txt TLE 2104 ms 13792 KB
06.txt TLE 2104 ms 13792 KB
07.txt TLE 2104 ms 13792 KB
08.txt TLE 2104 ms 13920 KB
09.txt TLE 2104 ms 11788 KB
10.txt TLE 2104 ms 12284 KB
11.txt TLE 2104 ms 11796 KB
12.txt TLE 2104 ms 11924 KB
sample-01.txt AC 17 ms 3060 KB
sample-02.txt AC 17 ms 2940 KB
sample-03.txt AC 17 ms 3060 KB