Time Addition/Subtraction Calculator
Accurately add or subtract two times in hours:minutes:seconds format.
Input Information
Result
Enter times to calculate
Time Addition/Subtraction Calculator performs addition or subtraction of two time values.
This can be used in various situations such as combining exercise times, calculating work hours, and flight time calculations.
Input format is "hh:mm:ss" or "hh:mm", with calculations accurate to the second.
Term Glossary
- Time Addition
- Adding two times to find the total duration.
- Time Subtraction
- Finding the difference between two times. A negative result means overtime.
- 24-Hour Format
- A time format using 0~23 hours without AM/PM distinction.
- 1
Choose mode
Select the addition (+) or subtraction (−) operator.
- 2
Enter times
Enter two times as 'hh:mm' or 'hh:mm:ss'. Any format works — leading zeros optional.
- 3
Check result
The result appears in 'hh:mm:ss'. A negative sign means the first time was shorter.
- 4
Apply
Use directly for exercise totals, work-hour differences, or timer settings.
Example 1 — Total exercise time
Jogging 30 min + swimming 45 min + stretching 15 min → 00:30 + 00:45 + 00:15 = 01:30:00. Total workout: 1 hour 30 minutes.
Example 2 — Comparing record improvements
Previous 01:30:00, new 01:25:30 → subtraction: −00:04:30. The negative 4 min 30 sec means the new time is that much faster.
Conversion Basis
Calculation Process
1. Convert input to seconds
2. Perform arithmetic in seconds
Add: sec1 + sec2 | Subtract: sec1 - sec2
3. Convert result back to time format
Hours = result ÷ 3600 | Minutes = (result % 3600) ÷ 60 | Seconds = result % 60
Examples
Exercise Time Total
00:30:00 + 00:45:00 + 00:15:00 = 01:30:00
Work Hours Calculation
09:00:00 ~ 18:00:00 = 09:00:00 (점심시간 포함)
Difference from Previous Record
01:25:30 - 01:30:00 = -00:04:30 (4 min 30 sec faster)
Notes
- Results exceeding 24 hours are calculated correctly.
- A negative subtraction result means the time is insufficient.
- Both "01:30:45" and "1:30:45" formats work for input.
QWhat if the result exceeds 24 hours?
Results exceeding 24 hours display correctly — 15:00 + 12:00 = 27:00. This represents total elapsed time, useful for flight durations or cumulative work. To convert to clock time, take the result modulo 24.
QWhat does a negative subtraction result mean?
A negative result means the first time is shorter. 00:45 − 01:00 = −00:15:00 means '15 minutes short' — handy for tracking training improvement or time-overrun.
QCan I enter both 'hh:mm' and 'hh:mm:ss'?
Yes. All formats — '1:30', '01:30', '1:30:45' — are supported. Missing seconds default to 0, so '1:30' is treated as '1:30:00'.
QCan this calculator handle multi-day times?
No — this calculator handles hh:mm:ss within a single day. For multi-day periods, use the date-difference calculator instead, then adjust any remaining hours here.
QWhen is this calculator most useful in daily life?
Useful for totalling exercise records, work-hour calculations, travel-time aggregation, timer setup, and video-editing timelines — especially when summing multiple hh:mm:ss segments without manual conversion.