BOJ / 4573번 / Pizza Pricing [Go][Python3]
👩🏻💻 문제 4573번: Pizza Pricing The input contains a series of one or more menus. Each menu starts with the number of options N, 1 ≤ N ≤ 10, followed by N lines, each containing two integers respectively designating a pizza's diameter D (in inches) and price P (in dollars), wit www.acmicpc.net ✍🏻 풀이 🎨 Go // https://www.acmicpc.net/problem/4573 package main import ( "bufio" "fmt" "math" "os" ) func ..
dev/algorithm
2020. 12. 22. 21:00