#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) { count += action(y, l); if(x) { count++; count += action(x,l); } } else if (y < 0){ if(x) { count++; count += action(x,l); } count++; count += action(y*-1,l); } cout << count << endl; return 0; }