개발자 톡
연습문제 톡
연탄의 크기
예외 케이스가 하나 있는데 뭘까요..?
- 등록일
- 2024-05-23 17:21:48
- 조회수
- 348
- 작성자
- dmlwls990527
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int arr[]=new int[n]; for(int i=0;i<n;i++){ arr[i]=sc.nextInt(); } Arrays.sort(arr); int max=Integer.MIN_VALUE; for(int i=arr[0];i<=arr[n-1];i++){ int count=0; for(int j=0;j<n;j++){ if(arr[j]%i==0)count++; } if(count>max)max=count; } System.out.println(max); } }
#연탄의_크기