본문 바로가기

Algorithm/Brute Force

(C++) - 백준(BOJ) 10395 번 : Automated Checking Machine

반응형

https://www.acmicpc.net/problem/10395

 

10395번: Automated Checking Machine

The first line contains five integers Xi (0 ≤ Xi ≤ 1 for i = 1, 2, . . . , 5), representing the connection points of the first connector in the pair. The second line contains five integers Yi (0 ≤ Yi ≤ 1 for i = 1, 2, . . . , 5), representing the c

www.acmicpc.net

간단한 전수조사 문제였습니다.

📕 풀이방법

📔 입력 및 초기화

5개의 정수를 입력받을 배열 a와 정답을 출력할 c를 선언 후 적절히 입력받습니다.

📔 정답출력

5개의 정수를 a에 저장한 후 5개의 정수를 다시 입력했을 때 원소값이 다르다면 c는 'N'이 됩니다.

최종 c값을 출력합니다.


📕 Code

#include <bits/stdc++.h>
using namespace std;
int a[5];
char c = 'Y';
int main(){
    for(int i = 0; i < 5; i++) cin >> a[i];
    for(int i = 0, x; i < 5; i++) {
        cin >> x;
        if(a[i] == x) c = 'N';
    }
    cout << c;
}

*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.