일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 파이썬
- 최단 경로
- C언어
- 페이코 초대코드
- 배열
- php 프로그래밍 입문 연습문제
- 페이코 추천인
- 자바 스프링
- 자바
- php 프로그래밍 입문 문제풀이
- spring
- php 프로그래밍 입문 예제
- php 프로그래밍 입문 솔루션
- 페이코 친구코드
- php
- 백준
- php 프로그래밍 입문 3판
- programmers
- Flutter
- C
- php 프로그래밍
- 스프링
- Java
- 한정 분기
- 페이코 추천인코드
- 플러터
- SWEA
- php 프로그래밍 입문
- JAVA SPRING
- 플러터 개발환경 설정
- Today
- Total
목록전체 글 (594)
ImJay

[파이썬/Python] 백준 7891번 Can you add this? 7891번: Can you add this? The input contains several test cases. The first line contains and integer t (t ≤ 100) denoting the number of test cases. Then t tests follow, each of them consisiting of two space separated integers x and y (−109 ≤ x, y ≤ 109). www.acmicpc.net 문제 Given two integers, calculate and output their sum. 두 정수가 주어졌을 때, 그들의 합을 계산하고 출력해야 합니..

[파이썬/Python] 백준 27323번 직사각형 27323번: 직사각형 정수 A, B 가 주어진다. 세로 길이가 A cm, 가로 길이가 B cm 인 아래와 같은 직사각형의 넓이를 cm2 단위로 구하시오. www.acmicpc.net 문제 정수 A, B 가 주어진다. 세로 길이가 A cm, 가로 길이가 B cm 인 아래와 같은 직사각형의 넓이를 cm2 단위로 구하시오. 입력 표준 입력에 다음과 같은 형태로 입력이 주어진다. A B 출력 세로 길이가 A cm, 가로 길이가 B cm인 직사각형의 넓이를 cm2 단위로 구하고, 단위 (cm2)를 생략하여 출력한다. 제한 1 ≦ A ≦ 100. 1 ≦ B ≦ 100. A, B 는 정수이다. 예제 입력 2 3 예제 출력 6 세로 길이가 2 cm, 가로 길이가 3 ..

[파이썬/Python] 백준 6840번 Who is in the middle? 6840번: Who is in the middle? In the story Goldilocks and the Three Bears, each bear had a bowl of porridge to eat while sitting at his/her favourite chair. What the story didn’t tell us is that Goldilocks moved the bowls around on the table, so the bowls were not at the right seats www.acmicpc.net 문제 In the story Goldilocks and the Three Bears, each be..