萌新第一次用指针,好激动!!同时求神犇们简化。。

P1200 [USACO1.1] 你的飞碟在这儿 Your Ride Is Here

```cpp #include<iostream> #include<cstring> using namespace std; int main() { char *a=new char[6],*r=new char[6];scanf("%s%s",a,r); int c=strlen(a),h=strlen(r),d=1,e=1; while(c--)d*=*a++-64;while(h--)e*=*r++-64; puts(d%47==e%47?"GO":"STAY");return 0; } @[paekae](/space/show?uid=58133) 我就过来无聊的 ```
by iotang @ 2017-09-30 09:50:02


66666
by _19992146 @ 2017-09-30 22:52:44


|