Baekjoon Online Judge - 2839
Review
- 3을 계속 빼다 5의 배수인 경우 5로 전부 나누면 된다.
Code (JAVA)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| import java.util.*;
public class Main {
public static void main(String args[]) { Scanner sc = new Scanner(System.in); int input = sc.nextInt(); int cnt = 0; int ans = 0;
while(input % 5 !=0 && input >= 0) { input -=3; cnt++;
}
ans = input < 0 ? -1 : cnt + input/5; System.out.println(ans);
}
}
|