<NOIP> 17 . P1200 [USACO1.1]你的飞碟在这儿Your Ride Is He…

题目:这是洛谷的第17道题目,将输入的字符串提取出来,转换成小写的字符,进行乘法运算,然后比较两个数与47的求余即可。

源代码:

#include <iostream>
#include <string.h>
#include <sstream>
#include <stdlib.h>

using namespace std;

#define MIDDLE 64
#define VALUE 47

int main()
{
    int sum1 = 1,sum2 = 1;
    string first, second;
    cin >> first;
    cin >> second;

    char * str1 = new char[first.size()];
    char * str2 = new char[second.size()];

    strcpy(str1, first.c_str());
    strcpy(str2, second.c_str());

    for (size_t i = 0; i < first.size(); i++)
        sum1 *= str1[i] - MIDDLE;
    
    for (size_t i = 0; i < second.size(); i++)
        sum2 *= str2[i] - MIDDLE;
    
    if (sum1%VALUE == sum2%VALUE)
        cout << "GO" << endl;
    else
        cout << "STAY" << endl;
    
    system("pause");
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值