-Code
n, m = map(int, input().split())
a_list = list(map(int, input().split()))
b_list = list(map(int, input().split()))
res = 0
for a in a_list:
for b in b_list:
if a <= b:
res += 1
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 20978번 共通要素 (Common Elements) (0) | 2023.07.02 |
---|---|
[백준/파이썬] 4864번 Gold Coins (0) | 2023.07.01 |
[백준/파이썬] 25773번 Number Maximization (0) | 2023.06.29 |
[백준/파이썬] 16786번 すごろくと駒 (Sugoroku and Pieces) (0) | 2023.06.28 |
[백준/파이썬] 9913번 Max (0) | 2023.06.27 |