2024/04/184 백준 31520 Champernowne Verification https://www.acmicpc.net/problem/31520 31520번: Champernowne Verification The $k^{\text{th}}$ Champernowne word is obtained by writing down the first $k$ positive integers and concatenating them together. For example, the $10^{\text{th}}$ Champernowne word is $12345678910$. Given a positive integer $n$, determine if it is a Cham www.acmicpc.net 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 def s.. 2024. 4. 18. 백준 30501 관공... 어찌하여 목만 오셨소... https://www.acmicpc.net/problem/30501 30501번: 관공... 어찌하여 목만 오셨소... 천하제일의 장수 관우도 결국 죽음을 맞이했다. 유비와 장비는 관우의 복수를 위해 $N$명의 용의자 중 관우를 죽인 범인을 찾으려 한다. 관우와 함께 있었던 장수의 말에 따르면 관우를 죽인 범 www.acmicpc.net 1234567if __name__ == '__main__': t = int(input()) for i in range(t): name = input() if 'S' in name: print(name) breakcs 2024. 4. 18. 백준 31090 2023은 무엇이 특별할까? https://www.acmicpc.net/problem/31090 31090번: 2023은 무엇이 특별할까? 각 테스트 케이스에 대해, $N+1$이 $N$의 끝 두 자리로 나누어 떨어진다면 Good을, 그렇지 않다면 Bye를 한 줄에 하나씩 차례로 출력하여라. www.acmicpc.net 12345678910111213141516def sol(yy): last_number = int(yy[:-3:-1][::-1]) if (int(yy) + 1) % last_number == 0: return 'Good' else: return 'Bye' if __name__ == '__main__': t = int(input()) for i in range(t): yy = input() print(sol(yy)) Co.. 2024. 4. 18. 백준 24087 アイスクリーム (Ice Cream) https://www.acmicpc.net/problem/24087 24087번: アイスクリーム (Ice Cream) JOI アイスクリーム店は,非常に高さのあるアイスクリームタワーが名物のアイスクリーム店である.アイスクリームタワーとは,ベースとなるアイスクリームの上に,追加のアイスクリーム www.acmicpc.net 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 from math import ceil def sol(s, a, b): answer = 250 cost = 100 if s 2024. 4. 18. 이전 1 다음