CF173A.Rock-Paper-Scissors

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Nikephoros and Polycarpus play rock-paper-scissors. The loser gets pinched (not too severely!).

Let us remind you the rules of this game. Rock-paper-scissors is played by two players. In each round the players choose one of three items independently from each other. They show the items with their hands: a rock, scissors or paper. The winner is determined by the following rules: the rock beats the scissors, the scissors beat the paper and the paper beats the rock. If the players choose the same item, the round finishes with a draw.

Nikephoros and Polycarpus have played nn rounds. In each round the winner gave the loser a friendly pinch and the loser ended up with a fresh and new red spot on his body. If the round finished in a draw, the players did nothing and just played on.

Nikephoros turned out to have worked out the following strategy: before the game began, he chose some sequence of items A=(a1,a2,...,am)A=(a_{1},a_{2},...,a_{m}) , and then he cyclically showed the items from this sequence, starting from the first one. Cyclically means that Nikephoros shows signs in the following order: a1a_{1} , a2a_{2} , ...... , ama_{m} , a1a_{1} , a2a_{2} , ...... , ama_{m} , a1a_{1} , ...... and so on. Polycarpus had a similar strategy, only he had his own sequence of items B=(b1,b2,...,bk)B=(b_{1},b_{2},...,b_{k}) .

Determine the number of red spots on both players after they've played nn rounds of the game. You can consider that when the game began, the boys had no red spots on them.

输入格式

The first line contains integer nn ( 1<=n<=21091<=n<=2·10^{9} ) — the number of the game's rounds.

The second line contains sequence AA as a string of mm characters and the third line contains sequence BB as a string of kk characters ( 1<=m,k<=10001<=m,k<=1000 ). The given lines only contain characters "R", "S" and "P". Character "R" stands for the rock, character "S" represents the scissors and "P" represents the paper.

输出格式

Print two space-separated integers: the numbers of red spots Nikephoros and Polycarpus have.

输入输出样例

  • 输入#1

    7
    RPS
    RSPP
    

    输出#1

    3 2
  • 输入#2

    5
    RRRRRRRR
    R
    

    输出#2

    0 0

说明/提示

In the first sample the game went like this:

  • R - R. Draw.
  • P - S. Nikephoros loses.
  • S - P. Polycarpus loses.
  • R - P. Nikephoros loses.
  • P - R. Polycarpus loses.
  • S - S. Draw.
  • R - P. Nikephoros loses.

Thus, in total Nikephoros has 33 losses (and 33 red spots), and Polycarpus only has 22 .

首页