# 시간 형식

{% hint style="success" %}
모든 시간 형식(단위, 시간 간격, 랩타임 및 이중 시간 단위)은 서로 자유롭게 변환할 수 있습니다.
{% endhint %}

### 일반 시간 단위

| 이름     | Symbol | 정의         |
| ------ | ------ | ---------- |
| Second | s, sec | 시간의 기본 단위  |
| Minute | min    | 60초        |
| Hour   | h, hr  | 60분        |
| Day    | day    | 24시간       |
| Week   | wk     | 7일         |
| Month  | mo     | 30.436875일 |
| Year   | yr     | 365.2425일  |

### 시간 간격 (Timespans)

시간 간격은 연도부터 초까지 여러 구성 요소를 표시하는 시간의 양입니다.

```
5.5 minutes as timespan | 5분 30초
4.54 hours as timespan  | 4시간 32분 24초
72 days as timespan     | 10주 2일
```

시간 간격은 다양한 방식으로 표현하고 형식화할 수 있습니다.

<pre><code>3 hours 5 minutes 10 seconds             | 3시간 5분 10초
<strong>3h 5m 10s    | 3시간 5분 10초
</strong>
3h 5m 10s in seconds | 11,110 s
</code></pre>

### 랩타임 (Laptimes)

랩타임은 HH:MM:SS.MS 형식(시:분:초.밀리초)의 시간의 양으로, 타이머에서 일반적으로 사용됩니다.

```
5.5 minutes as laptime | 00:05:30
```

랩타임 간의 산술 연산이 가능합니다.

```
03:04:05 + 01:02:03 | 04:06:08
00:12:05 − 00:04:09 | 00:07:56
```

{% hint style="info" %}
랩타임은 Soulver가 시계 시간과 구별할 수 있도록 콜론(:)을 두 개 포함해야 합니다.

예를 들어, 1.5초의 랩타임을 지정하려면 00:00:01.5를 사용하세요.
{% endhint %}

랩타임과 시간 간격 간에 변환할 수 있습니다.

```
03:04:05 as timespan                   | 3시간 4분 5초
3 hours 4 minutes 5 seconds as laptime | 03:04:05
```

### 이중 시간 단위 (Double Time Units)

```
12.5 minutes in minutes and seconds | 12분 30초
1.4 weeks in hours and minutes      | 235시간 12분
4.5 weeks in days and hours         | 31일 12시간
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.soulver.app/ko/undefined/time/timespans-and-laptimes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
