-
백준 1712번: 손익분기점정수론(Number theory) 2018. 7. 19. 17:58반응형
https://www.acmicpc.net/problem/1712
1. 문제
초등학교 6학년 수학문제
2. 알고리즘
키워드 - 수학
3. 코드
12345678910111213141516171819202122232425262728293031323334353637383940#include <iostream>#include <sstream>#include <string>#include <algorithm>#include <functional>#include <vector>#include <list>#include <queue>#include <deque>#include <map>#include <set>#include <stack>#include <cstring>#include <math.h>using namespace std;#define MAX_SIZE 100#define INF 0x7fffffff#define CENDL "\n"#define ll long longint main() {cin.tie(0);std::ios::sync_with_stdio(false);int a, b, c;cin >> a >> b >> c;// c 가 적으면 음수if (c > b) {cout << a / (c-b) + 1 << CENDL;} else {cout << -1 << CENDL;}return 0;}cs 반응형'정수론(Number theory)' 카테고리의 다른 글
백준 10162번: 전자레인지 (0) 2018.07.23 백준 1977번: 완전제곱수 (0) 2018.07.19 백준 1357번: 뒤집힌 덧셈 (0) 2018.07.19 백준 2153번: 소수 단어 (0) 2018.07.16 백준 4880번: 다음수 (0) 2018.07.15