Notice
Recent Posts
Recent Comments
Link
Dev.baelanche
[백준 9625] BABBA 본문
반응형
문제에서 주어진대로 스왑해준다.
길이가 매우 길어질 수 있는 관계로 문자열 가지고 직접 구현할수는 없다.
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int k = sc.nextInt();
int a = 1;
int b = 0;
while(k-->0) {
int tempB = a;
a -= a;
a += b;
b += tempB;
}
System.out.println(a + " " + b);
}
}
반응형
'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글
[백준 1389] 케빈 베이컨의 6단계 법칙 (0) | 2019.07.03 |
---|---|
[백준 13909] 창문 닫기 (0) | 2019.07.03 |
[백준 1252] 이진수 덧셈 (0) | 2019.07.02 |
[백준 16510] Predictable Queue (0) | 2019.07.02 |
[백준 10162] 전자레인지 (0) | 2019.07.02 |
Comments