[BOJ_10871] X보다 작은 수

조준형·2021년 6월 30일
0

Algorithm

목록 보기
3/142
post-thumbnail

https://www.acmicpc.net/problem/10871

알고리즘 분류

  • 수학
  • 구현

제출 코드

import sys

N,M = map(int, sys.stdin.readline().split())
arr = list(map(int, sys.stdin.readline().split()))

for i in range(N):
    if arr[i] < M:
        print(arr[i], end=" ")

반복문(for) 써보기

profile
깃허브 : github.com/JuneHyung

0개의 댓글