inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

wldydcom님의 게시글

wldydcom wldydcom

@wldydcom2554

수강평 작성수
-
평균평점
-

게시글 1

질문&답변

채점오류

코드입니다 import sys #sys.stdin=open("input.txt","rt") n, k=map(int,input().split()) cnt = 0 for i in range(1, n+1): if n%i==0: cnt+=1 if cnt==k: print(i) break else: print(-1)

좋아요수
0
댓글수
2
조회수
211