Submission #2668429


Source Code Expand

N, T = list(map(int, input().split()))
t = list(map(int, input().split()))

ans = 0
tmp = t[0]
for t_i in t[1:]:
    ans += min(T, t_i-tmp)
    tmp = t_i
ans += T

print(ans)

Submission Info

Submission Time
Task C - Sentou
User a_key_bako
Language Python (3.4.3)
Score 300
Code Size 184 Byte
Status AC
Exec Time 142 ms
Memory 26832 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 5
AC × 13
Set Name Test Cases
Sample example0, example1, example2, example3, example4
All example0, example1, example2, example3, example4, maxrand0, maxrand1, maxrand2, rand0, rand1, rand2, rand3, rand4
Case Name Status Exec Time Memory
example0 AC 17 ms 2940 KB
example1 AC 17 ms 3060 KB
example2 AC 17 ms 3060 KB
example3 AC 17 ms 2940 KB
example4 AC 17 ms 2940 KB
maxrand0 AC 140 ms 26832 KB
maxrand1 AC 131 ms 26832 KB
maxrand2 AC 142 ms 26708 KB
rand0 AC 18 ms 3060 KB
rand1 AC 17 ms 3060 KB
rand2 AC 17 ms 3060 KB
rand3 AC 17 ms 3060 KB
rand4 AC 17 ms 2940 KB