반응형
List 메서드 알아보러 가기
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace baek2
{
class Program
{
static void Main(string[] args)
{
string input = Console.ReadLine();
string[] n_m = input.Split();
int N = int.Parse(n_m[0]);
int M = int.Parse(n_m[1]);
List<int> list = new List<int>();
for (int i=0; i<N;i++)
{
list.Add(i);
}
for (int i=0; i<M;i++)
{
string input_AB = Console.ReadLine();
string[] A_B = input_AB.Split();
int A = int.Parse(A_B[0]);
int B = int.Parse(A_B[1]);
int count = B - A + 1;
int range = A - 1;
list.Reverse(range,count);
}
foreach (int K in list)
{
Console.Write((K+1) + " ");
}
}
}
}
반응형
'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글
백준 C# 27866 (0) | 2023.04.21 |
---|---|
백준 C# 1546 (0) | 2023.04.21 |
백준 C# 3052 (0) | 2023.04.18 |
백준 C# 5597 (0) | 2023.04.12 |
백준 C# 10813 (0) | 2023.04.12 |
댓글