Created
August 13, 2019 06:37
-
-
Save sreeprasad/b0aac8bdc255e773efc28a1d5e48ee89 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public int moves(int N, int M) { | |
int x = (N+1)/2; | |
int result = ((x+M-1)/M)*M; | |
if(result>N) result = -1; | |
System.out.printf("%d\n", result); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment