성능 요약
메모리: 78.2 MB, 시간: 0.12 ms - Answer Code1(23.01.10) 메모리: 81.7 MB, 시간: 0.14 ms - Answer Code2(23.01.20)
구분
코딩테스트 연습 > 연습문제
Answer Code1(23.01.10)
class Solution {
public long solution(int a, int b) {
long answer = 0;
if(a < b) {
for(int i = a; i <= b; i++) {
answer += i;
}
} else if(a > b){
for(int i = b; i <= a; i++) {
answer += i;
}
} else {
answer = a;
}
return answer;
}
}
Answer Code2(23.01.20)
class Solution {
public long solution(int a, int b) {
long answer = 0;
if(a!=b){
for(int i=Math.min(a,b);i<=Math.max(a,b);i++){
answer+=i;
}
}else{
answer=a;
}
return answer;
}
}