풀이 흐름 설명
시간복잡도:
O(N), 공간복잡도:O(N)
- [ x ] 1회
- 2회
- 3회
import java.util.Scanner;
import java.io.FileInputStream;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int T;
T=sc.nextInt();
for(int test_case = T; test_case >= 0; test_case--)
{
System.out.print(test_case+" ");
}
}
}
