본문 바로가기

백준1058

백준 32260 A + B https://www.acmicpc.net/problem/32260 123456#include "aplusb.h" int sum(int A, int B) {  return A + B ;} cs 2024. 10. 27.
백준 32154 SUAPC 2024 Winter https://www.acmicpc.net/problem/32154 1234567891011121314151617181920def sol(rank_num):    answer = {1: [11, ["A", "B", "C", "D", "E", "F", "G", "H", "J", "L", "M"]]        , 2: [9, ["A", "C", "E", "F", "G", "H", "I", "L", "M"]]        , 3: [9, ["A", "C", "E", "F", "G", "H", "I", "L", "M"]]        , 4: [9, ["A", "B", "C", "E", "F", "G", "H", "L", "M"]]        , 5: [8, ["A", "C", "E", "F", "G", ".. 2024. 10. 27.
백준 31994 강당 대관 https://www.acmicpc.net/problem/31994 123456789def sol(seminar_list):    seminar_list.sort(key=lambda x: -int(x[1]))    return seminar_list[0][0]  if __name__ == '__main__':    seminar_list = [input().split() for i in range(7)]    print(sol(seminar_list)) Colored by Color Scriptercs 2024. 7. 15.
백준 32025 체육은 수학과목 입니다 https://www.acmicpc.net/problem/32025 12345678910def sol(h, w):    return min(h, w) * 100 // 2  if __name__ == '__main__':    h = int(input())    w = int(input())     print(sol(h, w)) Colored by Color Scriptercs 2024. 7. 15.
백준 30979 유치원생 파댕이 돌보기 https://www.acmicpc.net/problem/30979 12345678910111213def sol(t, candys):    if t > candys:        return "Padaeng_i Cry"    else:        return "Padaeng_i Happy"  if __name__ == '__main__':    t = int(input())    n = int(input())    candys = sum(list(map(int, input().split())))    print(sol(t, candys)) Colored by Color Scriptercs 2024. 6. 19.
백준 27736 찬반투표 https://www.acmicpc.net/problem/27736 27736번: 찬반투표 투표가 통과되었으면 APPROVED, 통과되지 않았으면 REJECTED, 무효 처리되었으면 INVALID를 출력한다. www.acmicpc.net 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 from math import ceil def sol(nums): if nums.count(0) >= ceil(len(nums)/2): return 'INVALID' elif sum(nums) 재학생절반 2.5명인데 3명으로 간주해야할 듯 싶어요 2024. 4. 21.
백준 31668 특별한 가지 https://www.acmicpc.net/problem/31668 31668번: 특별한 가지 첫 번째 줄에 파묻튀밥 한 줄에 들어가는 파묻튀의 양을 나타내는 정수 $N$이 주어진다. 두 번째 줄에 학교가 파묻튀를 사용한 양을 나타내는 정수 $M$이 주어진다. 세 번째 줄에 파묻튀밥 한 줄에 www.acmicpc.net 1234567891011def sol(n, m, k): answer = (m // n) * k return answer if __name__ == '__main__': n = int(input()) m = int(input()) k = int(input()) print(sol(n, m, k)) cs 2024. 4. 19.
백준 31428 엘리스 트랙 매칭 https://www.acmicpc.net/problem/31428 31428번: 엘리스 트랙 매칭 엘리스 트랙은 2020년부터 시작한 KDT(K-Digital Training) 교육이며 Cloud 트랙, SW 엔지니어 트랙, IOT 트랙, AI 트랙 총 4가지 트랙이 있다. 누적 1000명 이상의 수료생을 배출하였고, 현업에서 활동하는 많 www.acmicpc.net 123456if __name__ == '__main__': n = int(input()) friends = input().split() hello = input() print(friends.count(hello)) Colored by Color Scriptercs 2024. 4. 19.
백준 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.