#include using namespace std; int action (int num, int l) { int count = 0; if (num >= l) { count += num/l; num = num % l; } count += num; return count; } int main () { int x, y, l; cin >> x >> y >> l; int count = 0; // 行動をカウントする if (x < 0) x *= -1; if (y < 0) { if (x > 0) { count++; count += action(x, l); } y *= -1; if (y > 0) { count += action(y, l); } } else { if (x > 0) { count++; count += action(x, l); } if (y > 0) { count += action(y, l); } } cout << count << endl; return 0; }