A1424.[COCI-2010_2011-contest4]#2 AVION

普及/提高-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Mirko and Slavko are USKOK agents tracking the movements of an unnamed corrupt government official. Anonymous sources have tipped them about his upcoming escape attempt. They now know he plans to use his diplomatic liaisons to try and hitch a ride on a CIA blimp leaving from Severin na Kupi blimp port.
It’s common knowledge that all CIA blimps have the string “FBI” somewhere in their registration codes. They obtained a list of all blimps scheduled for the designated day. There are exactly 5 blimps on the list. Write a program that will point out all CIA blimps.

输入格式

There are exactly 5 rows of input, each row representing one blimp registration code from the list. A registration code is a sequence of at most 10 uppercase letters of the English alphabet, digits ‘0’ to ‘9’,
or dashes ‘-’.

输出格式

The first and only line of output must contain a space separated list of integers, sorted in increasing order, indicating the corresponding input rows containing registrations of CIA blimps.
If there are no CIA blimps, output the string “HE GOT AWAY!”.

输入输出样例

  • 输入#1

    N-FBI1 
    9A-USKOK 
    I-NTERPOL 
    G-MI6 
    RF-KGB1 

    输出#1

    1 
  • 输入#2

    N321-CIA 
    F3-B12I 
    F-BI-12 
    OVO-JE-CIA 
    KRIJUMCAR1 

    输出#2

    HE GOT AWAY!
  • 输入#3

    47-FBI 
    BOND-007 
    RF-FBI18 
    MARICA-13 
    13A-FBILL 

    输出#3

    1 3 5 

说明/提示

首页