개발자 톡

연습문제 톡 연탄의 크기

파이썬 정답 코드 공유

등록일
2024-02-23 15:23:32
조회수
586
작성자
jojo9712
import sys

# 난로의 반지름 = n * (연탄의 반지름)

number = int(input())
row_list = list(map(int, input().split()))
count_init = 0

for i in range(2, 101):
    
    count = 0
  
    for j in row_list:
        if j%i==0:
            count+=1
    if count > count_init:
        count_init = count
        
print(count_init)

#연탄의_크기

이 카테고리의 톡 더보기