1132 Cut Integer
Posted CSU迦叶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1132 Cut Integer相关的知识,希望对你有一定的参考价值。
注意:取余得到的后半段b可能为0,所以要预先判断,否则会出现浮点错误。
写成 if(b!=0&&z%(a*b)==0)是不能避免浮点错误的,因为z%(a*b)已经发生。需要更换两个条件的位置,把前提放在前面,即
if(b!=0&&z%(a*b)==0)printf("Yes\\n");
else printf("No\\n");
AC代码
#include<cstdio>
#include<iostream>
#include<cmath>
#include<cstring>
#include<algorithm>
#include<bits/stdc++.h>
#include<stdlib.h>
#include<time.h>
#include<vector>
#include<set>
#include<string>
#include<queue>
#include<map>
using namespace std;
typedef long long LL;
const int maxn = 1010;
const int MOD = 1000000007;
const int INF = 1000000000;//INF:下确界
const LL SUP = (1LL<<63)-1;//SUP:上确界
const double eps = 1e-5;
int main(){
int n,z;
char str[50];
cin>>n;
while(n--){
cin>>z;
sprintf(str,"%d",z);
int L = strlen(str);
int temp = pow(10,L/2);
int a = z/temp;
int b = z%temp;
if(b!=0&&z%(a*b)==0)printf("Yes\\n");
else printf("No\\n");
}
return 0;
}
以上是关于1132 Cut Integer的主要内容,如果未能解决你的问题,请参考以下文章