1132 Cut Integer (20 分)难度: 简单 / 知识点: 模拟

Posted 辉小歌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1132 Cut Integer (20 分)难度: 简单 / 知识点: 模拟相关的知识,希望对你有一定的参考价值。


https://pintia.cn/problem-sets/994805342720868352/problems/994805347145859072
就是简单的模拟即可。

#include<bits/stdc++.h>
using namespace std;
bool solve(string s)

    int len=s.size();
    int a=stoi(s.substr(0,len/2));
    int b=stoi(s.substr(len/2));
    int sum=stoi(s);
    if(a*b==0) return false;
    if(sum%(a*b)) return false;
    return true;

int main(void)

    int t; cin>>t;
    while(t--)
    
        string s; cin>>s;
        if(solve(s)) puts("Yes");
        else puts("No");
    
    return 0;

以上是关于1132 Cut Integer (20 分)难度: 简单 / 知识点: 模拟的主要内容,如果未能解决你的问题,请参考以下文章

1132 Cut Integer (20 分)

PAT Advanced 1132 Cut Integer (20分)

PAT甲级1132 Cut Integer (20分)

PAT_A1132#Cut Integer

1132 Cut Integer (20)

PAT Advanced 1132 Cut Integer (20) [数学问题-简单数学]