-
10871_Python // X보다 작은 수IT_Baekjoon 단계별로 풀어보기/for문 2020. 1. 5. 23:58

Python
import sys n, x = map(int,sys.stdin.readline().split()) l = list(map(int,sys.stdin.readline().split())) for i in range(n) : if(l[i] < x) : print(l[i],"",end = '',flush=True)===
'IT_Baekjoon 단계별로 풀어보기 > for문' 카테고리의 다른 글
2439_Python // 별 찍기 -2 (0) 2020.01.05 2438_Python // 별 찍기 -1 (0) 2020.01.05 11022_Python // A+B -8 (0) 2020.01.05 11021_Python // A+B -7 (0) 2020.01.05 2742_Python // 기찍 N (0) 2020.01.05