https://www.acmicpc.net/problem/10430
Python
a, b, c = map(int, input().split())
print((a+b)%c, ((a%c) + (b%c))%c, (a*b)%c, ((a%c) * (b%c))%c, sep='\n')
Java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
String[] s = scan.nextLine().split(" ");
int a = Integer.parseInt(s[0]);
int b = Integer.parseInt(s[1]);
int c = Integer.parseInt(s[2]);
System.out.println((a + b) % c);
System.out.println(((a % c) + (b % c)) % c);
System.out.println((a * b) % c);
System.out.println(((a % c) * (b % c)) % c);
scan.close();
}
}
'알고리즘 > 백준' 카테고리의 다른 글
[Python/Java] 백준 1330번 - 두 수 비교하기 (0) | 2020.06.08 |
---|---|
[Python/Java] 백준 2588번 - 곱셈 (0) | 2020.06.08 |
[Python/Java] 백준 10869번 - 사칙연산 (0) | 2020.06.08 |
[Python/Java] 백준 1008번 - A/B (0) | 2020.06.08 |
[Python/Java] 백준 10998번 - A×B (0) | 2020.06.08 |
댓글