개발자 톡
연습문제 톡
연탄의 크기
자바 정답코드 공유합니다
- 등록일
- 2024-09-19 22:33:01
- 조회수
- 143
- 작성자
- tv0106
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); // 집의 수 int[] heaterDiameterArr = new int[n]; String[] strArr = br.readLine().split(" "); int maxCnt = 0; int cnt = 0; for(int i=0; i<n; i++) { heaterDiameterArr[i] = Integer.parseInt(strArr[i]); } for(int i=2; i<=100; i++) { cnt = 0; for(int j=0; j<n; j++) { if(heaterDiameterArr[j] % i == 0) cnt++; } maxCnt = Math.max(maxCnt,cnt); } System.out.print(maxCnt); } }
#연탄의_크기