大数模拟——K - Large Division LightOJ - 1214

Posted msmw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大数模拟——K - Large Division LightOJ - 1214相关的知识,希望对你有一定的参考价值。

K - Large Division

 LightOJ - 1214 

大数模拟,记得把符号去掉

 1 #include <iostream>
 2 #include <cstring>
 3 #include <string>
 4 #include <map>
 5 #include <set>
 6 #include <algorithm>
 7 #include <fstream>
 8 #include <cstdio>
 9 #include <cmath>
10 #include <stack>
11 #include <queue>
12 using namespace std;
13 const double Pi=3.14159265358979323846;
14 typedef long long ll;
15 const int MAXN=5000+5;
16 const int dx[5]=0,0,0,1,-1;
17 const int dy[5]=1,-1,0,0,0;
18 const int INF = 0x3f3f3f3f;
19 const int NINF = 0xc0c0c0c0;
20 int main()
21 
22     int t;cin>>t;int cnt=0;
23     while(t--)
24     
25         string str;cin>>str;ll n;cin>>n;
26         if(str[0]==-)
27             str.erase(str.begin());
28         ll sum=0;
29         for(int i=0;i<str.size();i++)
30         
31             sum=sum*10+str[i]-0;
32             sum=sum%n;
33         
34         if(sum==0) printf("Case %d: divisible\n",++cnt);
35             else printf("Case %d: not divisible\n",++cnt);
36             
37     
38     return 0;    
39  

 

以上是关于大数模拟——K - Large Division LightOJ - 1214的主要内容,如果未能解决你的问题,请参考以下文章

L - Large Division (大数, 同余)

light oj 1214 - Large Division 大数除法

1214 - Large Division -- LightOj(大数取余)

LightOJ 1214(Large Division)

LightOJ - 1214 Large Division(同余)

light oj 1214 Large Division