코테201 [BOJ / C++] 10162번 : 전자레인지 문제 3개의 시간조절용 버튼 A B C가 달린 전자레인지가 있다. 각 버튼마다 일정한 시간이 지정되어 있어 해당 버튼을 한번 누를 때마다 그 시간이 동작시간에 더해진다. 버튼 A, B, C에 지정된 시간은 각각 5분, 1분, 10초이다. 냉동음식마다 전자레인지로 요리해야할 시간 T가 초단위로 표시되어 있다. 우리는 A, B, C 3개의 버튼을 적절히 눌러서 그 시간의 합이 정확히 T초가 되도록 해야 한다. 단 버튼 A, B, C를 누른 횟수의 합은 항상 최소가 되어야 한다. 이것을 최소버튼 조작이라고 한다. 만일 요리시간이 100초라고 하면(T=100) B를 1번, C는 4번 누르면 된다. 이와 다르게 C를 10번 눌러도 100초가 되지만 이 경우 10번은 최소 횟수가 아니기 때문이 답이 될 수 없다. .. 2023. 1. 3. [BOJ / C++] 1748번 : 수 이어 쓰기 1 문제 1부터 N까지의 수를 이어서 쓰면 다음과 같이 새로운 하나의 수를 얻을 수 있다. 1234567891011121314151617181920212223... 이렇게 만들어진 새로운 수는 몇 자리 수일까? 이 수의 자릿수를 구하는 프로그램을 작성하시오. 입력 첫째 줄에 N(1 ≤ N ≤ 100,000,000)이 주어진다. 출력 첫째 줄에 새로운 수의 자릿수를 출력한다. Solved.ac 레벨 실버 IV 풀이 #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; int cnt = 0; cin >> n; if(n < 10){ cout 2023. 1. 3. [BOJ / C++] 24736번 : Football Scoring 문제 There are five ways to score points in american professional football: Touchdown - 6 points Field Goal - 3 points Safety - 2 points After touchdown 1 point (Field Goal or Safety) - Typically called the “Point after” 2 points (touchdown) - Typically called the “Two-point conversion” (https://operations.nfl.com/the-rules/nfl-video-rulebook/scoring-plays/) Given the box score values for two comp.. 2023. 1. 3. [BOJ / Python] 16099번 : Larger Sport Facility 문제 In a lot of places in the world, elite universities come in pairs and their students like to challenge each other every year. In England, Oxford and Cambridge are famous for The Boat Race, an annual rowing race that opposes them. In Switzerland, students from Zürich and Lausanne battle in a famous annual ski challenge. TelecomParisTech and Eurecom, two famous French schools, are also planning.. 2023. 1. 3. 이전 1 ··· 27 28 29 30 31 32 33 ··· 51 다음