일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 최단 경로
- php 프로그래밍 입문
- programmers
- 스프링
- php 프로그래밍
- 배열
- 자바
- 한정 분기
- Java
- 백준
- spring
- Flutter
- 자바 스프링
- 페이코 친구코드
- php 프로그래밍 입문 문제풀이
- SWEA
- 페이코 초대코드
- php 프로그래밍 입문 연습문제
- 파이썬
- 페이코 추천인
- JAVA SPRING
- php 프로그래밍 입문 3판
- php 프로그래밍 입문 솔루션
- php 프로그래밍 입문 예제
- 페이코 추천인코드
- C언어
- 플러터
- C
- php
- 플러터 개발환경 설정
- Today
- Total
ImJay
[파이썬/Python] 백준 26209번 Intercepting Information 본문
[파이썬/Python] 백준 26209번 Intercepting Information
ImJay 2022. 12. 4. 17:04[파이썬/Python] 백준 26209번 Intercepting Information
문제
Spies Breaching Computers (SBC) is a private digital spy agency that is developing a new device for intercepting information using electromagnetic waves, which allows spying even without physical contact with the target.
The device tries to collect information one byte at a time, this is, a sequence of 8 bits where each of them, naturally, can have a value of 0 or 1 . In certain situations, due to interference from other devices, the reading cannot be done successfully. In this case, the device returns the value 9 for the corresponding bit, informing that the reading could not be performed.
In order to automate the recognition of the information the device reads, a request was made for a program that, based on the information read by the device, informs whether all bits were read successfully or not. Your task is to write this program.
해설
입력 받은 정수들 중 9가 포함되어 있을 경우 "F", 포함되어 있지 않을 경우 "S" 를 출력한다.
코드
N = map(int, input().split())
print('F' if 9 in N else 'S')
풀이
1. 리스트 N을 통해 정수들을 입력 받는다.
N = map(int, input().split())
2. 삼항연산자를 통해 리스트 N에 9가 포함되어 있을 경우 F, 아닐 경우 S가 반환되도록 하고 이를 출력한다.
print('F' if 9 in N else 'S')
'Solved.ac - Python > Bronze V' 카테고리의 다른 글
[파이썬/Python] 백준 26711번 A+B (0) | 2023.06.05 |
---|---|
[파이썬/Python] 백준 26545번 Mathematics (0) | 2023.06.05 |
[파이썬/Python] 백준 26082번 WARBOY (0) | 2022.12.04 |
[파이썬/Python] 백준 25372번 성택이의 은밀한 비밀번호 (0) | 2022.12.04 |
[파이썬/Python] 백준 25314번 코딩은 체육과목 입니다 (3) | 2022.12.04 |