[D3] Calkin-Wilf tree 1 - 11688
성능 요약
메모리: 52,764 KB, 시간: 272 ms, 코드길이: 553 Bytes
제출 일자
2023-10-28 04:21
출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do
import java.util.Scanner;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for(int tc = 1; tc <= T; tc++)
{
String commands = sc.next();
int a = 1, b = 1;
for(char command : commands.toCharArray()){
if(command == 'L'){
b = a + b;
}else{
a = a + b;
}
}
System.out.println("#" + tc + " " + a + " " + b);
}
}
}
'알고리즘 - SWEA > D3' 카테고리의 다른 글
[SW expert Academy] SWEA 5601번 쥬스 나누기 자바(Java) (1) | 2023.10.28 |
---|---|
[SW expert Academy] SWEA 9317번 석찬이의 받아쓰기 자바(Java) (0) | 2023.10.28 |
[SW expert Academy] SWEA 1228번 암호문1 자바(Java) (0) | 2023.10.28 |
[SW expert Academy] SWEA 1213번 String 자바(Java) (1) | 2023.10.28 |
[SW expert Academy] SWEA 10570번 제곱 팰린드롬 수 자바(Java) (0) | 2023.10.27 |