๋ฐ์ํ
https://www.acmicpc.net/problem/14697
์ฝ๋
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int A = scan.nextInt();
int B = scan.nextInt();
int C = scan.nextInt();
int N = scan.nextInt(); // ์ ์ฒด ํ์ ์
int result = 0;
for(int i=0; i<300; i++) {
for(int j=0; j<150; j++) {
for(int k=0; k<100; k++) {
if((i*A) + (j*B) + (k*C) == N) {
result = 1;
break;
}
}
}
}
System.out.println(result);
scan.close();
}
}
์์ ํ์์ ํตํด ๋ชจ๋ ๊ฒฝ์ฐ์ ์๋ฅผ ๊ตฌํด์ฃผ์๋ค.
๋ฒ์๊ฐ ์์ ๊ฐ์ผ๋ฏ๋ก, A๋ 300๊น์ง, B๋ 150๊น์ง, C๋ 100๊น์ง ๋ฐ๋ณต๋ฌธ์ ๋๋ฆฐ๋ค.
๊ฐ๊ฐ ๋ฐ๋ณต๋ฌธ์ ๋๋ฉฐ ํฉ์ด N๊ณผ ๊ฐ์๋, ๋ชจ๋ for๋ฌธ์ ๋น ์ ธ๋์ค๊ธฐ ์ํดflag๋ฅผ true๋ก ์ ์ฅํ๊ณ ๋น ์ ธ๋์จ๋ค.
๋ฐ์ํ
'Algorithm' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[๋ฐฑ์ค] 1977๋ฒ: ์์ ์ ๊ณฑ์ (0) | 2020.01.18 |
---|---|
[๋ฐฑ์ค] 2846๋ฒ: ์ค๋ฅด๋ง๊ธธ (0) | 2020.01.17 |
[๋ฐฑ์ค] 15953๋ฒ: ์๊ธ ํํฐ (0) | 2020.01.17 |
[๋ฐฑ์ค] 2446๋ฒ: ๋ณ ์ฐ๊ธฐ - 9 (0) | 2020.01.16 |
[๋ฐฑ์ค] 2445๋ฒ: ๋ณ ์ฐ๊ธฐ - 8 (0) | 2020.01.16 |
๋๊ธ