码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-06-08 18:47:46      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:names   lse   title   pac   cst   ace   erase   nbsp   const   

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

标签:names   lse   title   pac   cst   ace   erase   nbsp   const   

原文地址:https://www.cnblogs.com/Msmw/p/10991230.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!