我是靠谱客的博主 震动滑板,最近开发中收集的这篇文章主要介绍LightOJ 1214 Large Division(大整数取模),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题目链接:
LightOJ 1214 Large Division
题意:
大整数取模。输入a,b(-10^200 <= a <= 10^200, b != 0, b是int),判断a能否整除b。
分析:
把大整数写成“从左向右”的形式:如:1234 = ((1 * 10 + 2) * 10 + 3) * 10 + 4.然后根据(n + m) % p = ((n % p) + (m % p)) % p,每步去模。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <algorithm>
#include <climits>
#include <cmath>
#include <ctime>
#include <cassert>
#define IOS ios_base::sync_with_stdio(0); cin.tie(0);
using namespace std;
typedef long long ll;
const int MAX_N = 250;

int T, cases = 0, p;
char s[MAX_N];

int main()
{
    scanf("%d", &T);
    while(T--){
        scanf("%s%d", &s, &p);
        printf("Case %d: ", ++cases);
        int len = strlen(s);
        if(s[0] == '0' && len == 1){
        printf("divisiblen");
        continue;
        }
        if(p < 0) p = -p;
        int ans = 0, st = 0;
        if(s[0] == '-') st = 1;
        for(int i = st; i < len; i++){
        ans = (int)(((ll) ans * 10 + s[i] - '0') % p);
        }
        if(ans == 0) printf("divisiblen");
        else printf("not divisiblen");
    }
    return 0;
}

最后

以上就是震动滑板为你收集整理的LightOJ 1214 Large Division(大整数取模)的全部内容,希望文章能够帮你解决LightOJ 1214 Large Division(大整数取模)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部