Skip to main content
Back to problems
#1103
Easy Algorithms

Distribute candies to people

Math Simulation
67.4% acceptance
Feb 25, 2026
1025
202
We distribute some number of candies, to a row of n = num_people people in the following way: We then give 1 candy to the first person, 2 candies to the second person, and so on until we give n candies to the last person. Then, we go back to the start of the row, giving n + 1 candies to the first person, n + 2 candies to the second person, and so on until we give 2 * n candies to the last person. This process repeats (with us giving one more candy each time, and moving to the start of the row after we reach the end) until we run out of candies. The last person will receive all of our remaining candies (not necessarily one more than the previous gift). Return an array (of length num_people and sum candies) that represents the final distribution of candies.

Solution

Rust
Time O(n)
Space O(n)
LeetCode
solution.rs
impl Solution {
  pub fn distribute_candies(candies: i32, num_people: i32) -> Vec<i32> {
    let n = num_people as usize;
    let mut result = vec![0i32; n];
    let mut candy = 1i32;
    let mut remaining = candies;
    while remaining > 0 {
      let idx = ((candy - 1) as usize) % n;
      result[idx] += candy.min(remaining);
      remaining -= candy.min(remaining);
      candy += 1;
    }
    result
  }
}