Challenge
Careers
Class
Connect
로그인 후 문제풀이가 가능합니다.
너무 어렵게 푼거 아닌가 싶은데..
const fs = require('fs'); const [a,b,d] = fs.readFileSync('input.txt','utf-8').split(' ').map(Number); const moveCalc = (current,moveDistance,totalDistance)=>{ if(current + moveDistance >= totalDistance){ return totalDistance - current; }else return moveDistance; } let isTouched = false; let isFinished = false; /** 소요 시간 */ let time = 0; /** 현재 위치 */ let currentLocation = 0; /* true: (터치전 기준) 술래가 앞을 바라보고 있음, false: (터치전 기준) 술래가 뒤를 바라보고 있음 */ let targe...
다른 풀이 있을까요?
a, b, d = map(int, input().split()) result = (a+b)*(d//a) + (d%a) + (a+b)*(d//b) + (d%b) if a == d: result -= b print(result) 출제의도와 다르게 푼 것 같아요... 다른 풀이 있는지 궁금합니다.
입력예제1 이상한것같아요
입력예제1 의 답 44가 아니라 34 아닌가요?