[코드업 기초 100제] [기초 - 1차원 배열] 코드업 1093 ~ 1095 자바 풀이
2022. 2. 16. 00:21ㆍ코딩테스트/코드업
728x90
반응형
https://github.com/haessae0/MCTP
1093. 이상한 출석 번호 부르기 1
import java.util.*;
public class codeup1093 {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
int[] array = new int[23];
int a = sc.nextInt();
for (int i = 0; i < a; i++) {
array[sc.nextInt() - 1]++;
}
for (int i = 0; i < array.length; i++) {
System.out.print(array[i] + " ");
}
}
}
1094. 이상한 출석 번호 부르기 2
import java.util.*;
public class codeup1094 {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int[] array = new int[a];
for (int i = 0; i < a; i++) {
array[i] = sc.nextInt();
}
for (int i = a - 1; i >= 0; i--) {
System.out.print(array[i] + " ");
}
}
}
1095. 이상한 출석 번호 부르기 3
import java.util.Scanner;
public class codeup1095 {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int[] array = new int[a];
int min = 24;
for (int i = 0; i < a; i++) {
array[i] = sc.nextInt();
if (min > array[i]) {
min = array[i];
}
}
System.out.println(min);
}
}
728x90
반응형
'코딩테스트 > 코드업' 카테고리의 다른 글
[코드업 기초 100제] [기초 - 2차원 배열] 코드업 1096 ~ 1099 자바 풀이 (0) | 2022.02.16 |
---|---|
[코드업 기초 100제] [기초 - 종합] 코드업 1078 ~ 1092 자바 풀이 (0) | 2022.02.16 |
[코드업 기초 100제] [기초 - 조건/선택 & 반복 실행 구조] 코드업 1065 ~ 1077 자바 풀이 (0) | 2022.02.15 |
[코드업 기초 100제] [기초 - 비트 & 삼항 연산] 코드업 1059 ~ 1064 자바 풀이 (0) | 2022.02.15 |
[코드업 기초 100제] [기초 - 비교 & 논리 연산] 코드업 1049 ~ 1058 자바 풀이 (0) | 2022.02.15 |