방법 1 : 1초씩 증가시켜서 M초 나누어서 K개의 빵을 증가, 줄 수 있는 빵이 있는지 판별 방법 2 : M초씩 증가시키면서 M초 전에 손님이 왔는지 판별, 있다면 빵을 줄 수 있는지 판별 Code public class Solution1860 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); for (int tc = 1; tc 생각 못하면 틀림 for (int i = 1; i 0) bread--; else { // 줄 빵이 없으므로 종료 possible = false; break; } } } } if (possible) result = "Possible"; System...