국비지원 6일차 (codeup 1409, 1430: 기억력테스트)
기억력 테스트 1
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int [] arr = new int[10];
for(int i = 0; i <= 9 ; i++ ) {
arr[i] = sc.nextInt();
}
int k = sc.nextInt();
System.out.println(arr[k-1]);
}
}
기억력 테스트 2
package practice;
import java.util.Scanner;
public class Main {
// 5
// 2 52 23 55 100
// 4
// 5 2 55 99
public static void main(String[] args) {
//값을 입력받음
Scanner sc = new Scanner(System.in);
int k = sc.nextInt();
int [] arr = new int[k];
for(int i = 0; i < k; i++){
arr[i] = sc.nextInt();
}
int t = sc.nextInt();
int [] arr2 = new int[t];
for(int i = 0; i < t; i++){
arr2[i] = sc.nextInt();
}
int [] out = new int[arr2.length];
for(int i = 0; i < arr2.length; i++) {
for(int j = 0 ; j <arr.length; j++) {
if(arr2[i] == arr[j]) {
out[i] = 1;
}
}
}
for(int i = 0; i < out.length; i++) { // 결과출력용
System.out.printf("%d ",out[i]);
}
}
}
근데 이런 식으로 하면,,,, 6초 후반대가 나오면서 시간초과가 나온다. 따라서 객체(Buffered writer)를 사용하여 문제풀이를 진행하면 된다.
Author And Source
이 문제에 관하여(국비지원 6일차 (codeup 1409, 1430: 기억력테스트)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@noome777/codeup-1430-기억력테스트저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)