Algorithm/HackerRank 4

[HackerRank] Save the Prisoner! - Java

문제 설명 Save the Prisoner! | HackerRank Given M sweets and a circular queue of N prisoners, find the ID of the last prisoner to receive a sweet. www.hackerrank.com 풀이 1 : Fail(시간 초과) 소스 코드 public static int saveThePrisoner(int n, int m, int s) { // Write your code here int num = s-1; for (int i = 0; i n) num = 1; } return num; } 풀이 회고 이 문제에서는 n명의 죄수와 m개의 사탕이 주어졌을 때 죄수번호..