| { |
| "id": 2748, |
| "name": "calculate-delayed-arrival-time", |
| "difficulty": "Easy", |
| "link": "https://leetcode.com/problems/calculate-delayed-arrival-time/", |
| "date": "2023-04-16", |
| "task_description": "You are given a positive integer `arrivalTime` denoting the arrival time of a train in hours, and another positive integer `delayedTime` denoting the amount of delay in hours. Return _the time when the train will arrive at the station._ Note that the time in this problem is in 24-hours format. **Example 1:** ``` **Input:** arrivalTime = 15, delayedTime = 5 **Output:** 20 **Explanation:** Arrival time of the train was 15:00 hours. It is delayed by 5 hours. Now it will reach at 15+5 = 20 (20:00 hours). ``` **Example 2:** ``` **Input:** arrivalTime = 13, delayedTime = 11 **Output:** 0 **Explanation:** Arrival time of the train was 13:00 hours. It is delayed by 11 hours. Now it will reach at 13+11=24 (Which is denoted by 00:00 in 24 hours format so return 0). ``` **Constraints:** `1 <= arrivaltime < 24` `1 <= delayedTime <= 24`", |
| "test_case": [ |
| { |
| "label": "Example 1", |
| "input": "arrivalTime = 15, delayedTime = 5", |
| "output": "20 " |
| }, |
| { |
| "label": "Example 2", |
| "input": "arrivalTime = 13, delayedTime = 11", |
| "output": "0 " |
| } |
| ], |
| "constraints": [ |
| "1 <= arrivaltime < 24", |
| "1 <= delayedTime <= 24" |
| ], |
| "python_template": "class Solution(object):\n def findDelayedArrivalTime(self, arrivalTime, delayedTime):\n \"\"\"\n :type arrivalTime: int\n :type delayedTime: int\n :rtype: int\n \"\"\"\n ", |
| "java_template": "class Solution {\n public int findDelayedArrivalTime(int arrivalTime, int delayedTime) {\n \n }\n}", |
| "metadata": { |
| "func_name": "findDelayedArrivalTime" |
| } |
| } |