new!dea

#10430 나머지 (Python3) 본문

Baekjoon Online Judge

#10430 나머지 (Python3)

new!dea 2021. 5. 2. 22:14

www.acmicpc.net/problem/10430

 

10430번: 나머지

첫째 줄에 A, B, C가 순서대로 주어진다. (2 ≤ A, B, C ≤ 10000)

www.acmicpc.net

#10430 나머지 (Python3)

1
2
3
4
5
6
7
a, b, c = map(int, input().split())
= (a+b)%c
= (a*b)%c
print(d)
print(d)
print(e)
print(e)
cs

'Baekjoon Online Judge' 카테고리의 다른 글

#2588 곱셈 (Python3)  (0) 2021.05.02
#2558 A+B - 2 (Python3)  (0) 2021.05.02
#10869 사칙연산 (Python3)  (0) 2021.05.02
#2557 Hello World (Python3)  (0) 2021.05.02
#1008 A/B (Python3)  (0) 2021.05.02
Comments