The Way
백준 13623번: Zerinho ou Um 본문
백준 온라인 저지(BOJ) 13623번 문제
https://www.acmicpc.net/problem/13623
1. 문제 요약
A, B, C 3명이서 0 아님 1을 말하는데, 혼자만 다른 숫자를 말할 때 이긴다
이긴 사람을 출력, 이긴 사람이 없으면 * 출력
2. 알고리즘
if문이 가장 빠른 듯
3. 코드
#include <iostream> using namespace std; int main() { int a, b, c; cin >> a >> b >> c; if (a == 1 && b == 0 && c == 0) printf("A\n"); else if (a == 0 && b == 1 && c == 1) printf("A\n"); else if (a == 0 && b == 1 && c == 0) printf("B\n"); else if (a == 1 && b == 0 && c == 1) printf("B\n"); else if (a == 0 && b == 0 && c == 1) printf("C\n"); else if (a == 1 && b == 1 && c == 0) printf("C\n"); else printf("*\n"); return 0; }
'PS > 백준 온라인 저지' 카테고리의 다른 글
백준 7770번: 아즈텍 피라미드 (0) | 2018.01.09 |
---|---|
백준 11726번: 2×n 타일링 (0) | 2018.01.09 |
백준 9664번: NASLJEDSTVO (0) | 2018.01.09 |
백준 4881번: 자리수의 제곱 (0) | 2018.01.09 |
백준 2606번: 바이러스 (0) | 2017.12.07 |
Comments