PREP - Who's Got You Singing Again (Official Video) PREP - Who’s Got You Singing Again (Live in Manila) It happened so easy at the start Got too used to bein' understood Then one day I caught you looking down Couldn't reach you like I thought I could I never knew why you gave it all up Is that it, was there something I missed in the silences That we couldn't seem to break through? Should've know..
Tyler, The Creator - Boredom (Audio) Tyler, The Creator - Boredom (Live at Panorama Festival NYC 2017) When you're having fun (fun) When you're having fun Fly out the window (go, go, go) Find some time Find some time to do something Find some time Find some time to do something Find some time Find some time to do something Boredom got a new best friend (Boredom, boredom, best friend) Cause bored..
It's a full tank in the getaway, getaway So before I break your heart, you should get the engine started There's nothing like a nice drive in the Summertime Sunshine with the groove goin' to help you move on So get a move on, get your mood right to start a new life And you're wonderin' what to do and where to go Tell me not to do it babe, I don't feel the same without you anymore Don't get caugh..
👩🏻💻 문제 1431번: 시리얼 번호 첫째 줄에 기타의 개수 N이 주어진다. N은 1,000보다 작거나 같다. 둘째 줄부터 N개의 줄에 시리얼 번호가 하나씩 주어진다. 시리얼 번호의 길이는 최대 50이고, 알파벳 대문자 또는 숫자로만 이루 www.acmicpc.net ✍🏻 풀이 🎨 Go // https://www.acmicpc.net/problem/1431 package main import ( "bufio" "fmt" "os" "sort" "strconv" ) func main() { reader := bufio.NewReader(os.Stdin) writer := bufio.NewWriter(os.Stdout) defer writer.Flush() var n int fmt.Fscanln(reader..
👩🏻💻 문제 11725번: 트리의 부모 찾기 루트 없는 트리가 주어진다. 이때, 트리의 루트를 1이라고 정했을 때, 각 노드의 부모를 구하는 프로그램을 작성하시오. www.acmicpc.net ✍🏻 풀이 🎨 Go // https://www.acmicpc.net/problem/11725 package main import ( "bufio" "fmt" "os" ) var ( tree [][]int visited []bool ) func main() { reader := bufio.NewReader(os.Stdin) writer := bufio.NewWriter(os.Stdout) defer writer.Flush() var n int fmt.Fscanln(reader, &n) tree = make([][]..
👩🏻💻 문제 2343번: 기타 레슨 강토는 자신의 기타 레슨 동영상을 블루레이로 만들어 판매하려고 한다. 블루레이에는 총 N개의 레슨이 들어가는데, 블루레이를 녹화할 때, 레슨의 순서가 바뀌면 안 된다. 순서가 뒤바뀌는 경 www.acmicpc.net ✍🏻 풀이 🎨 Go // https://www.acmicpc.net/problem/2343 package main import ( "bufio" "fmt" "os" ) func main() { reader := bufio.NewReader(os.Stdin) writer := bufio.NewWriter(os.Stdout) defer writer.Flush() var n, m int fmt.Fscanln(reader, &n, &m) var lessons =..
👩🏻💻 문제 11055번: 가장 큰 증가 부분 수열 수열 A가 주어졌을 때, 그 수열의 증가 부분 수열 중에서 합이 가장 큰 것을 구하는 프로그램을 작성하시오. 예를 들어, 수열 A = {1, 100, 2, 50, 60, 3, 5, 6, 7, 8} 인 경우에 합이 가장 큰 증가 부분 수 www.acmicpc.net ✍🏻 풀이 🎨 Go // https://www.acmicpc.net/problem/11055 package main import ( "bufio" "fmt" "os" ) func main() { reader := bufio.NewReader(os.Stdin) writer := bufio.NewWriter(os.Stdout) defer writer.Flush() var n int fmt.Fsc..
👩🏻💻 문제 11722번: 가장 긴 감소하는 부분 수열 수열 A가 주어졌을 때, 가장 긴 감소하는 부분 수열을 구하는 프로그램을 작성하시오. 예를 들어, 수열 A = {10, 30, 10, 20, 20, 10} 인 경우에 가장 긴 감소하는 부분 수열은 A = {10, 30, 10, 20, 20, 10} www.acmicpc.net ✍🏻 풀이 🎨 Go // https://www.acmicpc.net/problem/11722 package main import ( "bufio" "fmt" "os" ) func main() { reader := bufio.NewReader(os.Stdin) writer := bufio.NewWriter(os.Stdout) defer writer.Flush() var n in..