728x90
난이도 : 브론즈5
풀이일 : 04112
https://www.acmicpc.net/problem/10430
링크로 이동하기 귀찮은 분들을 위한 문제 캡쳐
풀이 코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
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);
}
}
느낀점
조건을 제대로 보지 않아서 한 번 틀렸다가 고쳤다.
로직을 아무리 잘 떠올려내고 구현해도 이러면 소용이 없으니까 꼼꼼히 읽자
'알고리즘 > 🥉 브론즈' 카테고리의 다른 글
백준 9498 시험 성적 자바 풀이 (0) | 2023.04.29 |
---|---|
백준 1330 두 수 비교하기 자바 풀이 (0) | 2023.04.28 |
백준 18108 1998년생인 내가 태국에서는 2541년생?! 자바 풀이 (0) | 2023.04.26 |
백준 10926 ??! 자바 풀이 (0) | 2023.04.25 |
백준 10869 사칙연산 자바 풀이 (0) | 2023.04.24 |