출제 링크 : https://www.acmicpc.net/problem/10871
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Solution
{
class Program
{
static void Main(string[] args)
{
//정수 N,X 입력
string[] nx = Console.ReadLine().Split();
int N = int.Parse(nx[0]);
int X = int.Parse(nx[1]);
//수열 A를 이루는 정수 N개
//모든 수를 나열한 후 int 배열에 넣는다.
StringBuilder NumberInput = new StringBuilder(Console.ReadLine());
string[] string_Numbers = NumberInput.ToString().Split(' ');
StringBuilder Output = new StringBuilder();
int[] numbers = new int[N];
for(int i = 0; i<N; i++)
{
numbers[i] = int.Parse(string_Numbers[i]);
if(numbers[i] < X)
{
Output.Append(numbers[i]).Append(" ");
}
}
//출력구문
Console.WriteLine(Output.ToString());
}
}
}
'Baekjoon 문제풀이' 카테고리의 다른 글
[Baekjoon 4단계(2)] 10951번 : A+B - 4 (0) | 2021.09.01 |
---|---|
[Baekjoon 4단계(1)] 10952번 : A+B - 5 (0) | 2021.08.31 |
[Baekjoon 3단계(10)] 2439번 : 별 찍기 - 2 (0) | 2021.08.31 |
[Baekjoon 3단계(9)] 2438번 : 별 찍기 - 1 (0) | 2021.08.31 |
[Baekjoon 3단계(8)] 11022번 : A+B - 8 (0) | 2021.08.31 |