일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
- 자바
- 한정 분기
- 페이코 추천인코드
- Flutter
- C
- php 프로그래밍 입문
- spring
- php 프로그래밍 입문 문제풀이
- programmers
- SWEA
- 백준
- php
- 배열
- php 프로그래밍 입문 3판
- Java
- 페이코 친구코드
- JAVA SPRING
- 페이코 추천인
- 플러터 개발환경 설정
- 파이썬
- php 프로그래밍 입문 예제
- php 프로그래밍
- 최단 경로
- 자바 스프링
- 플러터
- 페이코 초대코드
- php 프로그래밍 입문 솔루션
- C언어
- php 프로그래밍 입문 연습문제
- 스프링
- Today
- Total
목록전체 글 (594)
ImJay

[파이썬/Python] 백준 5341번 Pyramids 5341번: Pyramids The input will be a sequence of integers, one per line. The end of input will be signaled by the integer 0, and does not represent the base of a pyramid. All integers, other than the last (zero), are positive. www.acmicpc.net 문제 A pyramid of blocks is constructed by first building a base layer of n blocks and then adding n-1 blocks to the next layer..

[파이썬/Python] 백준 15680번 연세대학교 15680번: 연세대학교 연세대학교의 영문명은 YONSEI, 슬로건은 Leading the Way to the Future이다. 이를 출력하는 프로그램을 작성해보도록 하자. www.acmicpc.net 문제 연세대학교의 영문명은 YONSEI, 슬로건은 Leading the Way to the Future이다. 이를 출력하는 프로그램을 작성해보도록 하자. 입력 첫째 줄에 N이 주어진다. (N = 0 또는 1) 출력 N = 0일 경우: 연세대학교의 영문명을 출력한다. N = 1일 경우: 연세대학교의 슬로건을 출력한다. 대소문자 구별에 주의하도록 하자. 풀이 print('Leading the Way to the Future') if int(input()) e..

[파이썬/Python] 백준 26574번 Copier 26574번: Copier Your copier broke down last week, and you need to copy a list of numbers for a class project due tomorrow! Luckily, you can use your computer to copy the numbers for you. Given a list of numbers, each on their own line, print out the number, a space, and t www.acmicpc.net 문제 Your copier broke down last week, and you need to copy a list of numbers for ..