Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Time Delta | HackerRank https://www.hackerrank.com/challenges/python-time-de...

2
HackerRank | Prepare Certify Compete  Search   | 

Prepare  Python  Date and Time  Time Delta 36/115 challenges solved

Time Delta  Rank: 84438 | Points: 655 


Python

Problem Submissions Leaderboard Discussions Editorial 

Author shashank21j
When users post an update on social media,such as a URL, image, status update etc., other users in their
Difficulty Medium
network are able to view this new post on their news feed. Users can also see exactly when the post was
Max Score 30
published, i.e, how many hours, minutes or seconds ago.
Submitted By 73692
Since sometimes posts are published and viewed in different time zones, this can be confusing. You are given

two timestamps of one such post that a user can see on his newsfeed in the following format: N EE D H E L P ?

Day dd Mon yyyy hh:mm:ss +xxxx


 View discussions
Here +xxxx represents the time zone. Your task is to print the absolute difference (in seconds) between them.
 View editorial
Input Format
 View top submissions
The first line contains , the number of testcases.
RATE THIS CHALLENGE
Each testcase contains lines, representing time and time .
    
Constraints
M OR E DE TA IL S
• Input contains only valid timestamps
• .  Download problem statement

Output Format  Download sample test cases

Print the absolute difference in seconds.  Suggest Edits

Sample Input 0

2
Sun 10 May 2015 13:54:36 -0700
Sun 10 May 2015 13:54:36 -0000
Sat 02 May 2015 19:54:36 +0530
Fri 01 May 2015 13:54:36 -0000

Sample Output 0

25200
88200

Explanation 0

In the first query, when we compare the time in UTC for both the time stamps, we see a difference of 7 hours.
which is seconds or seconds.

Similarly, in the second query, time difference is 5 hours and 30 minutes for time zone adjusting for that we
have a difference of 1 day and 30 minutes. Or

Change Theme Language: Python 3

1 #!/bin/python3

1 of 2 4/8/23, 23:45
Time Delta | HackerRank https://www.hackerrank.com/challenges/python-time-de...

Line: 27 Col: 1

 Upload Code as File Test against custom input Run Code Submit Code

Blog | Scoring | Environment | FAQ | About Us | Support | Careers | Terms Of Service | Privacy Policy

2 of 2 4/8/23, 23:45

You might also like