[백준 알고리즘] 11022번  A+B - 8(Python3, Java)
언어, 알고리즘 공부/백준2020. 2. 11. 17:53[백준 알고리즘] 11022번 A+B - 8(Python3, Java)

import sys n = int(sys.stdin.readline()) for i in range(1, n+1): line = sys.stdin.readline() a, b = line.split() print("Case #%d: %d + %d = %d" %(i, int(a), int(b), int(a)+int(b))) import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class b_11022 { public static void main(String[] args) throws IOException { Buffere..

[백준 알고리즘] 11021번  A+B - 7(Python3, Java)
언어, 알고리즘 공부/백준2020. 2. 11. 17:47[백준 알고리즘] 11021번 A+B - 7(Python3, Java)

import sys n = int(sys.stdin.readline()) for i in range(1, n+1): line = sys.stdin.readline() a, b = line.split() print("Case #%d: %d" %(i,int(a)+int(b))) import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class b_11021 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedRe..

[백준 알고리즘] 1552번 빠른 A+B(Python3, Java)
언어, 알고리즘 공부/백준2020. 2. 11. 17:31[백준 알고리즘] 1552번 빠른 A+B(Python3, Java)

import sys n = sys.stdin.readline() n= int(n) for i in range(n): line= sys.stdin.readline() a,b = line.split() print(int(a)+int(b)) import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class b_15552 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamRe..

[백준 알고리즘] 10950번 A+B-3 (Python3, Java)
언어, 알고리즘 공부/백준2020. 2. 11. 17:20[백준 알고리즘] 10950번 A+B-3 (Python3, Java)

n = int(input()) for i in range(n): a,b = input().split() print(int(a)+int(b)) import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class b_10950 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int T = Integer.parseInt(br.readLin..

[백준 알고리즘] 2884번 알람 시계(Python3, Java)
언어, 알고리즘 공부/백준2020. 2. 11. 17:10[백준 알고리즘] 2884번 알람 시계(Python3, Java)

h, m = input().split() h, m = int(h), int(m) if m0: h -= 1 else: #h==0인경우 h = 23 m = 60-(45-m) else: m = m-45 print(h, m) import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class b_2884 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System..

[백준알고리즘] 2753번 윤년(Python3, Java)
카테고리 없음2020. 2. 11. 17:01[백준알고리즘] 2753번 윤년(Python3, Java)

year = int(input()) if (year%4 == 0 and year%100 != 0) or year%400 ==0: print(1) else: print(0) import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int year = Integer.parseInt(br.readLine()); if(((year%4..

[백준 알고리즘] 10817번 세 수(Java)
언어, 알고리즘 공부/백준2019. 9. 4. 15:17[백준 알고리즘] 10817번 세 수(Java)

import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String a = sc.nextLine(); String[] n = a.split(" "); int num1 = Integer.parseInt(n[0]); int num2 = Integer.parseInt(n[1]); int num3 = Integer.parseInt(n[2]); if(num1>=num2) { if(num1>=num3) {//num1이 최대 if(num2>=num3)//num1>num2>num3 System.out.println(num2); else //num1>num3>num2..

[백준 알고리즘] 2588번 곱셈 (java)
카테고리 없음2019. 8. 30. 13:32[백준 알고리즘] 2588번 곱셈 (java)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); System.out.println(a * (b%10)); System.out.println(a* ((b/10)%10)); System.out.println(a* (b/100)); System.out.println(a*b); } } b%10으로 일의 자리 숫자를 추출해 내고 b/100으로 백의 자리 숫자를 추출해냈다. 십의 자리는 그냥 b/10을 하면 일의 ..

[백준 알고리즘] 10171번 고양이 (Java)
언어, 알고리즘 공부/백준2019. 8. 30. 13:19[백준 알고리즘] 10171번 고양이 (Java)

1 2 3 4 5 6 7 8 9 10 11 public class Main { public static void main(String[] args) { System.out.println("\\ /\\"); System.out.println(" ) ( ')"); System.out.println("( / )"); System.out.println(" \\(__)|"); } }

image