PCCP기출문제2 [java] 붕대감기 (해설포함) 테스트케이스 최대 소요시간 : 0.06ms 문제 요약 //1초에 x만큼 회복하고, t를 채우면 y가 추가됨 bandage = [시전시간 t, 초당회복력x, 추가회복량 y] health = 최대체력 attacks = [ [공격시간,피해량], [공격시간, 피해량] ...] 제출답안 class Solution { public int solution(int[] bandage, int health, int[][] attacks) { int nowHealth = health - attacks[0][1]; if (nowHealth health ) nowHealth = health; nowHealth -= attacks[i][1] ; if (nowHealth 2024. 4. 9. [JS] 붕대감기 (해설포함) 테스트케이스 최대 소요시간 : 0.20ms 문제 요약 //1초에 x만큼 회복하고, t를 채우면 y가 추가됨 bandage = [시전시간 t, 초당회복력x, 추가회복량 y] health = 최대체력 attacks = [ [공격시간,피해량], [공격시간, 피해량] ...] 제출답안 function solution(bandage, health, attacks) { let nowhealth = health - attacks[0][1]; if (nowhealth health) ? health : nowhealth; nowhealth -= attacks[i][1]; if (nowhealth 2024. 3. 1. 이전 1 다음 728x90