-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1820_Ural_Steaks.cpp
49 lines (44 loc) · 1.16 KB
/
1820_Ural_Steaks.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* Author: Sohel Rana
* Date: 2022-01-26 15:11:05
* Task: 1820_Ural_Steaks
**/
#include <bits/stdc++.h>
#define endl '\n'
#define sqr(x) (x) * (x)
#define gcd(x, y) __gcd(x, y)
#define lcm(x, y) ((x/gcd(x,y)) * y)
#define pf(x) push_front(x)
#define pb(x) push_back(x)
#define eb(x) emplace_back(x)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define sz(x) (int)x.size()
#define debug(x) cerr<<#x<<" = "<<(x)<< endl
#define debug2(x,y) cerr<<#x<<" = "<<(x)<<","<<#y<<" = "<<(y)<< endl
#define unsyncIO ios_base::sync_with_stdio(false); cin.tie(nullptr)
using ll = long long;
using db = double;
using ld = long double;
using ull = unsigned long long;
const ld PI = acos((ld)-1);
const int MOD = 1e9+7;
const long long INF = 1e18;
const ld EPS = 1e-9;
using namespace std;
int main()
{
//freopen("in.txt", "r", stdin);
//freopen("out.txt", "w", stdout);
//unsyncIO;
int n, k;
cin >> n >> k;
if (n <= k) cout << 2 << endl;
else {
if (n * 2 % k == 0)
cout << (n * 2 / k) << endl;
else
cout << (n * 2 / k) + 1 << endl;
}
return 0;
}