2783 : 삼각 김밥

풀이

그냥 짜면 된다!

코드

#include <stdio.h>
double a, b, n, f;
int main() {
	scanf("%lf %lf %lf", &a, &b, &n);
	f = a / b;
	while (n--) {
		scanf("%lf %lf", &a, &b);
		f = f < a / b ? f : a / b;
	}
	printf("%lf", f * 1000);
	return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2017-09-03 00:30

Read more posts by this author