> For the complete documentation index, see [llms.txt](https://boj-ide.gitbook.io/boj-ide-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://boj-ide.gitbook.io/boj-ide-docs/note/language.md).

# 언어별 유의사항

## C++

C++ 언어의 경우, 테스트케이스 실행 시간이 정확하지 않습니다.

<mark style="color:red;">복잡도를 출력된 실행 시간으로 계산하지 마세요.</mark>

Mac OS에서는 특히 컴파일 시 라이브러리 정적 링크가 불가능하기 때문에, 동적으로 라이브러리를 링크되어 실행 속도가 매우 느리게 측정됩니다.

## Node.js

{% hint style="warning" %}
readline 모듈을 통한 표준 입력만 사용 가능합니다.
{% endhint %}

readFileSync 모듈은 Windows 환경에서 표준입력 (`0` or `/dev/stdin`) 옵션을 사용하는것이 불가능하다는 문제가 있습니다.

```javascript
fs.readFileSync(process.platform === 'win32' ? 'input.txt' : '/dev/stdin', 'utf-8')
```

`input.txt` 파일을 만든 후 `process.platform` 에 따라 파일 경로를 전달하는 식으로 구현이 가능하긴 하지만, 코드 일관성이 깨지게 되어 현재로썬 구현되지 않은 상태입니다.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://boj-ide.gitbook.io/boj-ide-docs/note/language.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
