Skip to content

Commit

Permalink
[level 0] Title: qr code, Time: 0.05 ms, Memory: 10.2 MB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
boyamie committed Jun 19, 2024
1 parent f6adfa0 commit 02bf99b
Show file tree
Hide file tree
Showing 2 changed files with 192 additions and 0 deletions.
186 changes: 186 additions & 0 deletions 프로그래머스/0/181903. qr code/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,186 @@
# [level 0] qr code - 181903

[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/181903)

### 성능 요약

메모리: 10.2 MB, 시간: 0.05 ms

### 구분

코딩테스트 연습 > 코딩 기초 트레이닝

### 채점결과

정확성: 100.0<br/>합계: 100.0 / 100.0

### 제출 일자

2024년 06월 19일 15:05:25

### 문제 설명

<p>두 정수 <code>q</code>, <code>r</code>과 문자열 <code>code</code>가 주어질 때, <code>code</code>의 각 인덱스를 <code>q</code>로 나누었을 때 나머지가 <code>r</code>인 위치의 문자를 앞에서부터 순서대로 이어 붙인 문자열을 return 하는 solution 함수를 작성해 주세요.</p>

<hr>

<h5>제한사항</h5>

<ul>
<li>0 ≤ <code>r</code> &lt; <code>q</code> ≤ 20</li>
<li><code>r</code> &lt; <code>code</code>의 길이 ≤ 1,000</li>
<li><code>code</code>는 영소문자로만 이루어져 있습니다.</li>
</ul>

<hr>

<h5>입출력 예</h5>
<table class="table">
<thead><tr>
<th>q</th>
<th>r</th>
<th>code</th>
<th>result</th>
</tr>
</thead>
<tbody><tr>
<td>3</td>
<td>1</td>
<td>"qjnwezgrpirldywt"</td>
<td>"jerry"</td>
</tr>
<tr>
<td>1</td>
<td>0</td>
<td>"programmers"</td>
<td>"programmers"</td>
</tr>
</tbody>
</table>
<hr>

<h5>입출력 예 설명</h5>

<p>입출력 예 #1</p>

<ul>
<li><p>예제 1번의 <code>q</code>와 <code>r</code>은 각각 3, 1이고 인덱스와 그 값을 <code>q</code>로 나눈 나머지가 잘 보이도록 표로 만들면 다음과 같습니다.</p>
<table class="table">
<thead><tr>
<th><code>code</code></th>
<th>q</th>
<th>j</th>
<th>n</th>
<th>w</th>
<th>e</th>
<th>z</th>
<th>g</th>
<th>r</th>
<th>p</th>
<th>i</th>
<th>r</th>
<th>l</th>
<th>d</th>
<th>y</th>
<th>w</th>
<th>t</th>
</tr>
</thead>
<tbody><tr>
<td>index</td>
<td>0</td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
<td>11</td>
<td>12</td>
<td>13</td>
<td>14</td>
<td>15</td>
</tr>
<tr>
<td><code>q</code>로 나눈 나머지</td>
<td>0</td>
<td>1</td>
<td>2</td>
<td>0</td>
<td>1</td>
<td>2</td>
<td>0</td>
<td>1</td>
<td>2</td>
<td>0</td>
<td>1</td>
<td>2</td>
<td>0</td>
<td>1</td>
<td>2</td>
<td>0</td>
</tr>
</tbody>
</table>
<p><code>q</code>로 나눈 나머지가 1인 인덱스의 문자들을 앞에서부터 순서대로 이어 붙이면 "jerry"가 되므로 이를 return 합니다.</p></li>
</ul>

<p>입출력 예 #2</p>

<ul>
<li><p>예제 2번의 <code>q</code>와 <code>r</code>은 각각 1, 0이고 인덱스와 그 값을 <code>q</code>로 나눈 나머지가 잘 보이도록 표로 만들면 다음과 같습니다.</p>
<table class="table">
<thead><tr>
<th><code>code</code></th>
<th>p</th>
<th>r</th>
<th>o</th>
<th>g</th>
<th>r</th>
<th>a</th>
<th>m</th>
<th>m</th>
<th>e</th>
<th>r</th>
<th>s</th>
</tr>
</thead>
<tbody><tr>
<td>index</td>
<td>0</td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
</tr>
<tr>
<td><code>q</code>로 나눈 나머지</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
</tbody>
</table>
<p><code>q</code>로 나눈 나머지가 1인 인덱스의 문자들을 앞에서부터 순서대로 이어 붙이면 "programmers"가 되므로 이를 return 합니다.</p></li>
</ul>


> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges
6 changes: 6 additions & 0 deletions 프로그래머스/0/181903. qr code/qr code.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
def solution(q, r, code):
answer = []
for i in range(len(code)):
if i % q == r:
answer.append(code[i])
return "".join(answer)

0 comments on commit 02bf99b

Please sign in to comment.