All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g2501_2600.s2582_pass_the_pillow.Solution Maven / Gradle / Ivy

There is a newer version: 1.37
Show newest version
package g2501_2600.s2582_pass_the_pillow;

// #Easy #Math #Simulation #2023_08_22_Time_0_ms_(100.00%)_Space_39.3_MB_(46.65%)

public class Solution {
    public int passThePillow(int n, int time) {
        int roundTrip = (n - 1) * 2;
        time = time % roundTrip;
        if (time < n) {
            return time + 1;
        }
        return n - (time - n + 1);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy