SWEA [D1] 더블더블 - 2019 JAVA

YB·2026년 5월 19일
post-thumbnail

링크텍스트

설명

풀이 흐름 설명

시간복잡도: 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+" ");
		}
	}
}

profile
안녕하세요

0개의 댓글