Submission #2892468


Source Code Expand

n, t = map(int, input().split())
t_list = list(map(int, input().split()))

total_seconds = 0
prev_timing = t_list[0]

for timing in t_list[1:]:
  if timing - prev_timing < t:
    total_seconds += timing - prev_timing
  else:
    total_seconds += t
  prev_timing = timing
total_seconds += t

print(total_seconds)

Submission Info

Submission Time
Task C - Sentou
User conyo
Language Python (3.4.3)
Score 300
Code Size 327 Byte
Status AC
Exec Time 122 ms
Memory 25200 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 2940 KB
example2 AC 17 ms 2940 KB
example3 AC 17 ms 2940 KB
example4 AC 17 ms 2940 KB
maxrand0 AC 122 ms 25196 KB
maxrand1 AC 118 ms 25200 KB
maxrand2 AC 103 ms 25196 KB
rand0 AC 17 ms 3060 KB
rand1 AC 17 ms 3060 KB
rand2 AC 18 ms 3060 KB
rand3 AC 18 ms 3060 KB
rand4 AC 17 ms 2940 KB