Skip to content

Commit

Permalink
[Bronze V] Title: 알고리즘 수업 - 알고리즘의 수행 시간 1, Time: 40 ms, Memory: 31120…
Browse files Browse the repository at this point in the history
… KB -BaekjoonHub
  • Loading branch information
boyamie committed Jun 13, 2024
1 parent 7bd9a1e commit 2f94924
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# [Bronze V] 알고리즘 수업 - 알고리즘의 수행 시간 1 - 24262

[문제 링크](https://www.acmicpc.net/problem/24262)

### 성능 요약

메모리: 31120 KB, 시간: 40 ms

### 분류

구현, 시뮬레이션

### 제출 일자

2024년 6월 13일 14:31:24

### 문제 설명

<p>오늘도 서준이는 알고리즘의 수행시간 수업 조교를 하고 있다. 아빠가 수업한 내용을 학생들이 잘 이해했는지 문제를 통해서 확인해보자.</p>

<p>입력의 크기 <em>n</em>이 주어지면 MenOfPassion 알고리즘 수행 시간을 예제 출력과 같은 방식으로 출력해보자.</p>

<p>MenOfPassion 알고리즘은 다음과 같다.</p>

<pre>MenOfPassion(A[], n) {
i = ⌊n / 2⌋;
return A[i]; # 코드1
}</pre>

### 입력

<p>첫째 줄에 입력의 크기 <em>n</em>(1 ≤ <i>n</i> ≤ 500,000)이 주어진다.</p>

### 출력

<p>첫째 줄에 코드1 의 수행 횟수를 출력한다.</p>

<p>둘째 줄에 코드1의 수행 횟수를 다항식으로 나타내었을 때, 최고차항의 차수를 출력한다. 단, 다항식으로 나타낼 수 없거나 최고차항의 차수가 3보다 크면 4를 출력한다.</p>

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
print(1)
print(0)

0 comments on commit 2f94924

Please sign in to comment.