5363번: 요다백준/문제2024. 3. 26. 13:54
Table of Contents
문제 출처 : https://www.acmicpc.net/problem/5363
언어 : Kotlin
문제 설명 :
어린 제다이들은 요다와 대화하는 법을 배워야 한다. 요다는 모든 문장에서 가장 앞 단어 두 개를 제일 마지막에 말한다.
어떤 문장이 주어졌을 때, 요다의 말로 바꾸는 프로그램을 작성하시오.
입력 :
첫째 줄에 문장의 수 N이 주어진다. 둘째 줄부터 N개의 줄에는 각 문장이 주어진다. 문장의 길이는 100글자 이내이다. 단어의 개수는 3개 이상이다.
출력 :
각 문장을 요다의 말로 바꾼 뒤 출력한다.
제한 사항 :
- 시간 제한 : 1초
- 메모리 제한 : 128MB
입출력 예 :
입력 | 출력 |
4 I will go now to find the Wookiee Solo found the death star near planet Kessel I'll fight Darth Maul here and now Vader will find Luke before he can escape |
go now to find the Wookiee I will the death star near planet Kessel Solo found Darth Maul here and now I'll fight find Luke before he can escape Vader will |
풀이 :
import java.io.BufferedReader
import java.io.BufferedWriter
import java.io.InputStreamReader
import java.io.OutputStreamWriter
fun main() = with(BufferedReader(InputStreamReader(System.`in`))) {
val bw = BufferedWriter(OutputStreamWriter(System.out))
val n = readLine().toInt()
repeat(n) {
readLine().split(" ").also {
bw.append(it.slice(2 .. it.lastIndex).joinToString(" ")).append(" ")
bw.appendLine(it.slice(0 .. 1).joinToString(" "))
}
bw.flush()
}
bw.close()
}
'백준 > 문제' 카테고리의 다른 글
27310번: :chino_shock: (0) | 2024.03.26 |
---|---|
11383번: 뚊 (0) | 2024.03.26 |
22233번: 가희와 키워드 (0) | 2024.03.25 |
15813번: 너의 이름은 몇 점이니? (0) | 2024.03.25 |
15927번: 회문은 회문아니야!! (0) | 2024.03.25 |
@스몰스테핑 :: 작은 발걸음
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!