Home [Python] 백준 10430번 : 나머지
Post
Cancel

[Python] 백준 10430번 : 나머지

Problem

https://www.acmicpc.net/problem/10430

Solution

input을 통해 문자열을 입력받은 후 split함수를 사용해서 list형태로 변환했다.
str형인 A, B, C 각각을 int형으로 변환한 후 계산하여 출력.

code

1
2
3
4
5
6
7
8
9
10
A, B, C = input().split()

A = int(A)
B = int(B)
C = int(C)

print((A+B)%C)
print(((A%C) + (B%C))%C)
print((A*B)%C)
print(((A%C) * (B%C))%C)
This post is licensed under CC BY 4.0 by the author.

[Python] 백준 1920번 : 수 찾기

[Java] 백준 1000번 : A+B