https://www.acmicpc.net/problem/10430
문제
접근법
문제 그대로 답을 출력하면 됨.
코드
A,B,C=map(int,input().strip().split())
print((A+B)%C)
print(((A%C) + (B%C))%C)
print((A*B)%C)
print(((A%C)*(B%C))%C)
'코딩테스트 준비 > 백준' 카테고리의 다른 글
[백준] 1934번 최소공배수 - 파이썬(Python) (0) | 2021.08.09 |
---|---|
[백준] 2609번 최대공약수와 최소공배수 - 파이썬(Python) (0) | 2021.08.09 |
[백준] 11656번 접미사 배열 - 파이썬(Python) (0) | 2021.08.04 |
[백준] 10824번 네 수 - 파이썬(Python) (0) | 2021.08.03 |
[백준] 11655번 ROT13 - 파이썬(Python) (0) | 2021.08.02 |