Full Boxes
Programming Basics · C++
TASK
Problem
In “Full Boxes”, input integer data and given n items and box capacity k, print the number of completely filled boxes.
EXAMPLE
Example
10 3
3
LIMITS
Constraints
0 ≤ values ≤ 10^12; every divisor/capacity is positive.
LEARN
Theory for this problem
+
For non-negative integers, `/` gives the integer quotient and `%` gives the remainder.
Connection to “Full Boxes”: here, intermediate values are best kept in named variables so the formula stays readable and data types remain clear.
NEED HELP?
Hints
+
['Choose division and remainder operations that match the requested decomposition.', 'After solving “Full Boxes”, verify the algorithm on your own small example and on an allowed boundary case. Print only the required result with no extra text.']
ANSWER
Solution
+
#include <iostream>
using namespace std;
int main() {
long long n, k;
cin >> n >> k;
cout << n / k << '\n';
return 0;
}