码迷,mamicode.com
首页 > 其他好文 > 详细

Your Ride Is Here

时间:2016-10-09 09:06:25      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:

题解:

模拟。

将这两个字符串每一个字符所对应的数字相乘,在mod 47判断是否相同(注意:相同GO,不相同STAY)。

{

ID:h1956701

LANG:PASCAL

PROB:ride

}

var s1,s2:ansistring;

function pd(s:ansistring):longint;

var ans,i:longint;

 begin

  ans:=1;

  for i:=1 to length(s) do ans:=ans*(ord(s[i])-64)mod 47;

  exit(ans);

 end;

begin

 assign(input,‘ride.in‘);

 reset(input);

 assign(output,‘ride.out‘);

 rewrite(output);

 readln(s1);

 readln(s2);

 if pd(s1)=pd(s2) then writeln(‘GO‘)

                  else writeln(‘STAY‘);

 close(input);

 close(output);

end.

Your Ride Is Here

标签:

原文地址:http://www.cnblogs.com/huzhaoyang/p/5940789.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!