File size: 3,298 Bytes
0a33073 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | {
"id": 2748,
"name": "calculate_delayed_arrival_time",
"difficulty": "Easy",
"link": "https://leetcode.com/problems/calculate-delayed-arrival-time/",
"date": "1681603200000",
"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`",
"public_test_cases": [
{
"label": "Example 1",
"input": "arrivalTime = 15, delayedTime = 5",
"output": "20 "
},
{
"label": "Example 2",
"input": "arrivalTime = 13, delayedTime = 11",
"output": "0 "
}
],
"private_test_cases": [
{
"input": [
18,
19
],
"output": 13
},
{
"input": [
10,
12
],
"output": 22
},
{
"input": [
9,
23
],
"output": 8
},
{
"input": [
6,
3
],
"output": 9
},
{
"input": [
3,
21
],
"output": 0
},
{
"input": [
5,
13
],
"output": 18
},
{
"input": [
11,
1
],
"output": 12
},
{
"input": [
13,
11
],
"output": 0
},
{
"input": [
5,
2
],
"output": 7
},
{
"input": [
12,
5
],
"output": 17
}
],
"haskell_template": "findDelayedArrivalTime :: Int -> Int -> Int\nfindDelayedArrivalTime arrivalTime delayedTime ",
"ocaml_template": "let findDelayedArrivalTime (arrivalTime: int) (delayedTime: int) : int = ",
"scala_template": "def findDelayedArrivalTime(arrivalTime: Int,delayedTime: Int): Int = { \n \n}",
"java_template": "public static int findDelayedArrivalTime(int arrivalTime, int delayedTime) {\n\n}",
"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 "
} |