3261.The Great Game

Time Limit: 1s Memory Limit: 256MB

Two teams meet in The Game World Championship. Some scientists consider this game to be the most intellectually challenging game in the world. You are given two strings describing the teams' actions in the final battle. Figure out who became the champion.

Input Format(From the terminal/stdin)

The input contains two strings of equal length (between 2 and 20 characters, inclusive). Each line describes the actions of one team.

Output Format(To the terminal/stdout)

Output "TEAM 1 WINS" if the first team won, "TEAM 2 WINS" if the second team won, and "TIE" if there was a tie.

Sample Input 1

Copy
[]()[]8 \lt 
8 \lt []()8 \lt 
       ·   \n
 ·   ·     ·   \n

Sample Output 1

Copy
TEAM 2 WINS
    · ·    \n

Sample Input 2

Copy
8 \lt 8 \lt ()
[]8 \lt []
 ·   · ·   ·  \n
   ·   ·  \n

Sample Output 2

Copy
TIE
   \n

Submit

请先 登录

© 2025 FAQs