https://www.acmicpc.net/problem/25314
import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
String result = "long int";
String txt = "";
int cnt = A / 4;
for (int i = 1 ; i < cnt ; i++) {
txt += "long " ;
}
System.out.println(txt + result);
sc.close();
}
}
'프로그래밍언어 > 알고리즘' 카테고리의 다른 글
백준 11021번 A+B - 7_JAVA (0) | 2023.05.04 |
---|---|
백준 15552번 빠른 A+B_JAVA (0) | 2023.05.04 |
백준 25304 영수증 (2) | 2023.05.02 |
백준 8393 합_JAVA (0) | 2023.05.02 |
백준 10950 A+B - 3 _JAVA (0) | 2023.05.02 |