1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-16 16:36:56 +02:00
LeetCode/java/find-the-student-that-will-replace-the-chalk.java
2024-09-02 22:22:20 +02:00

31 lines
506 B
Java

class Solution {
private long getSum(int[] chalk, int k) {
long sum = 0;
for (int uses : chalk) {
sum += uses;
if (sum > k) {
break;
}
}
return sum;
}
public int chalkReplacer(int[] chalk, int k) {
var partialSum = getSum(chalk, k);
// Remove whole iterations over the students
k %= partialSum;
for (int i = 0; i < chalk.length; ++i) {
if (k < chalk[i]) {
return i;
}
k -= chalk[i];
}
return 0;
}
}