목록코딩테스트/백준 (8)
leehyeon-dv 님의 블로그
📌 문제 🐍파이썬import sysaddResult = []while True: A,B = map(int, sys.stdin.readline().split()) if A == 0 and B == 0: break addResult.append(A+B)for i in addResult: print(i) 🧩자바import java.io.*;import java.util.ArrayList;import java.util.List;public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStr..
📌 문제 🐍파이썬import sysN = int(sys.stdin.readline())if ( 1 🧩자바import java.io.*;public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); int N = Integer.parseInt(br.readLine()); if(1
📌 문제 🐍파이썬import sysN = int(sys.stdin.readline())if ( 1 🧩자바import java.io.*;public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); int N = Integer.parseInt(br.readLine()); if(1
📌 문제 🐍파이썬import sysT=int(sys.stdin.readline())a, b = [], []sum = []for i in range(T): A, B = map(int, sys.stdin.readline().split()) a.append(A) b.append(B) sum.append(A+B)for i in range(T): print("Case #%d: %d + %d = %d" % (i+1, a[i],b[i], sum[i])) 🧩자바import java.io.*;public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new..
📌 문제 🐍파이썬import sysT=int(sys.stdin.readline())sum = []for i in range(T): A, B = map(int, sys.stdin.readline().split()) sum.append(A+B)for i in range(T): print("Case #%d: %d" % (i+1, sum[i])) 🧩자바import java.io.*;public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); Buffe..
📌 두 정수 A,B를 입력해 A+B출력🔻입출력 🐍파이썬n = int(input())A,B = [],[]for i in range(n): a,b = map(int,input().split()) A.append(a) B.append(b)for j in range(n): print(A[j]+B[j]) 🧩자바(배열)import java.util.Scanner;public class java { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] A = new int[n]; int[] B = n..
📌 45분 일찍 알람 설정하기 🔻입출력 🔓알고리즘수학사칙연산 🐍파이썬H,M = map(int, input().split())if(0=45): print(H, M-45) else: H = H -1 if H > 0 else 23 print(H, M+15)else: print("다시 입력") 🧩자바import java.util.Scanner;public class 알람시계 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int H = sc.nextInt(); int M = sc.nextInt(); if (0 = 4..
📌점의 좌표를 입력받아 그 점이 어느 사분면에 속하는지 알아내는 프로그램을 작성하시오. 단, x좌표와 y좌표는 모두 양수나 음수라고 가정한다. 🔻입출력 🔓알고리즘구현기하학 🐍파이썬x = int(input())y = int(input())if((-10000): if(y>0): print("1") else: print("4") else: if (y>0): print("2") else: print("3")else: print("다시 입력") 🧩자바import java.util.Scanner;public class 사분면 { public static void..