Notice
Recent Posts
Recent Comments
Link
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 인공지능
- 일본어기초
- suspend
- 진짜일본어
- ai
- CustomTab
- posting
- 일본어문법
- androidstudio
- jlpt
- pullrequest
- Kotlin
- GIT
- coroutine
- errorhandling
- 코틀린
- webflux
- blog
- KotlinInAction
- 안드로이드
- n3문법
- PR
- 진짜학습지후기
- Android
- 진짜학습지
- github
- 학습지
- 책리뷰
- rxjava
- 책추천
Archives
코딩하는 개굴이
BaekJoon/BOJ [JAVA] 문자열 반복_2675 본문
반응형
BaekJoon/BOJ [JAVA] 문자열 반복_2675
HINT: 어정쩡하게 nextLine썼다가 헷갈린 케이스
import java.util.Scanner;
import java.util.Vector;
public class baekjoon_2675 {
public static void main(String[] argc) {
Scanner scanner = new Scanner(System.in);
int iter = Integer.parseInt(scanner.nextLine());
Vector<String> output = new Vector<>();
for(int i=0;i<iter;i++) {
int count = scanner.nextInt();
String word = scanner.next();
String result = "";
for(int j=0;j<word.length();j++) {
for(int z=0;z<count;z++)
result+=word.charAt(j);
}
output.add(result);
}
for(int i=0;i<iter;i++) System.out.println(output.get(i));
}
}
반응형
'알고리즘 > Baekjoon' 카테고리의 다른 글
BaekJoon/BOJ [JAVA] 그룹 단어 체커_1316 (0) | 2019.01.15 |
---|---|
BaekJoon/BOJ [JAVA] 단어공부_1157 (0) | 2019.01.15 |
BaekJoon/BOJ [JAVA] 알파벳 찾기_10809 (0) | 2019.01.06 |
BaekJoon/BOJ [JAVA] 평균 점수_10039 (0) | 2019.01.06 |
BaekJoon/BOJ [JAVA] OX 퀴즈_8958 (0) | 2019.01.06 |
Comments