haju__log
[python][백준/BOJ] 1764번 : 듣보잡 본문
반응형
https://www.acmicpc.net/problem/1764
처음 짠 코드>>
n,m=map(int, input().split())
a=[]
b=[]
for _ in range(n):
a.append(input())
for _ in range(m):
b.append(input())
c=set(a)&set(b)
print(len(c))
for i in sorted(c):
print(i)
걸린 시간보고 기절... 무슨일이야...!
그래서 코드 수정>> 이것 관련해서 글 새로 써봐야지😁😁
from sys import stdin
n,m=(map(int, stdin.readline().split()))
a=[]
b=[]
for _ in range(n):
a.append(stdin.readline().rstrip())
for _ in range(m):
b.append(stdin.readline().rstrip())
c=set(a)&set(b)
print(len(c))
for i in sorted(c):
print(i)
https://breakcoding.tistory.com/109
반응형
'BOJ_백준' 카테고리의 다른 글
[python][백준/BOJ] 2845번 : 파티가 끝나고 난 뒤 (0) | 2023.03.04 |
---|---|
[python][백준/BOJ] 9653번 : 스타워즈 로고 (0) | 2023.03.04 |
[python][백준/BOJ] 10953번 : A+B-6 (0) | 2023.03.02 |
[python][백준/BOJ] 2475번 : 검증수 (0) | 2023.03.02 |
[python][백준/BOJ] 2566번 : 최댓값 (1) | 2023.02.28 |