728x90
https://www.acmicpc.net/problem/10430
최초풀이
뒤에 어려운 활용문제가 많이 등장합니다.
#include <iostream>
using namespace std;
int main() {
int A = 0;
int B = 0;
int C = 0;
cin >> A >> B >> C;
cout << (A + B) % C << endl;
cout << ((A % C) + (B % C)) % C << endl;
cout << (A*B) % C << endl;
cout << ((A % C) * (B % C)) % C;
}
728x90
'🥇Baekjoon Solutions > 정수론' 카테고리의 다른 글
[C++] 백준 1735번: 분수 합 (0) | 2021.07.29 |
---|---|
[C++] 백준 6588번: 골드바흐의 추측 (0) | 2021.07.29 |
[C++] 백준 4375번: 1 (0) | 2021.07.27 |
[C++] 백준 10610번: 30 (0) | 2021.07.26 |
[C++] 백준 2960번: 에라토스테네스의 체 (0) | 2021.07.26 |
댓글