PROBLEM 85
Hard

School Desks

Programming Basics · C++

</>
STATUS Not solved

TASK

Problem

#85

In “School Desks”, given number of students and seats per desk, print desks needed.

EXAMPLE

Example

Input
25 2
Output
13

LIMITS

Constraints

All values are non-negative and at most 10^12; every capacity/divisor is positive.
📖
LEARN Theory for this problem
+

Translate the story into a small arithmetic formula. Use ceiling division `(a+b-1)/b` when a partially filled unit still counts.

Connection to “School Desks”: here, intermediate values are best kept in named variables so the formula stays readable and data types remain clear.

💡
NEED HELP? Hints
+

['Identify what each input value means before writing the formula.', 'After solving “School Desks”, 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 students, seats;
    cin >> students >> seats;
    cout << (students + seats - 1) / seats << '\n';
    return 0;
}