PYTHON57 [Python] 백준 2742번 - 기찍 N https://www.acmicpc.net/problem/2742 2742번: 기찍 N 자연수 N이 주어졌을 때, N부터 1까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오. www.acmicpc.net n = int(input()) numbers = [] for i in range(1, n+1): numbers.append(i) numbers.reverse() for i in numbers: print(i) 2020. 6. 9. [Python] 백준 2741번 - N 찍기 https://www.acmicpc.net/problem/2741 2741번: N 찍기 자연수 N이 주어졌을 때, 1부터 N까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오. www.acmicpc.net n = int(input()) for i in range(1, n+1): print(i) 2020. 6. 9. [Python] 백준 15552번 - 빠른 A+B https://www.acmicpc.net/problem/15552 15552번: 빠른 A+B 첫 줄에 테스트케이스의 개수 T가 주어진다. T는 최대 1,000,000이다. 다음 T줄에는 각각 두 정수 A와 B가 주어진다. A와 B는 1 이상, 1,000 이하이다. www.acmicpc.net import sys times = int(input()) result = [] while times: times -= 1 a, b = map(int, sys.stdin.readline().split()) result.append(a+b) for i in result: print(i) 2020. 6. 9. [Python] 백준 8393번 - 합 https://www.acmicpc.net/problem/8393 8393번: 합 문제 n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오. 입력 첫째 줄에 n (1 ≤ n ≤ 10,000)이 주어진다. 출력 1부터 n까지 합을 출력한다. 예제 입력 1 복사 3 예제 출력 1 복사 6... www.acmicpc.net n = int(input()) numbers = [] while n: for i in range(1, n+1): numbers.append(i) n -= 1 print(sum(numbers)) 2020. 6. 9. [Python/Java] 백준 10950번 - A+B - 3 https://www.acmicpc.net/problem/10950 10950번: A+B - 3 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net Python times = int(input()) result = [] while times: times -= 1 a, b = map(int, input().split()) result.append(a+b) for i in result: print(i) Java import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int n = scan.. 2020. 6. 9. 이전 1 ··· 3 4 5 6 7 8 9 ··· 12 다음