개발자 뺚

[BAEKJOON ONLINE JUDGE] 26209번 : Intercepting Information 본문

Solution/Python

[BAEKJOON ONLINE JUDGE] 26209번 : Intercepting Information

2024. 2. 12. 01:00

시간 제한 : 1 초

 

메모리 제한 : 1024 MB

 

문제

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.

 

입력

The input consists of a single line, containing 8 integers , , , , , ,  and , indicating the values read by the device ( is 01 or 9 for 1≤i≤8).

 

출력

Print a single line containing the capital letter “S” if all bits are read successfully; otherwise print a single line containing the capital letter “F”, corresponding to a failure.


nums = list(input().split(" "))

if '9' in nums:
    print("F")
else:
    print("S")