主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
可以吖
2023年2月17日 15:17
python
P1182
回复 0
|
赞 0
|
浏览 2.6k
题中说最后一个k后面没有空格,但是我按照题干的输出后,答案不对,而最后加个空格竟然通过了。 while True: try: num=int(input()) li=[] for i in range(2,10): &nbs...
arcsinX
2022年7月5日 16:47
BigInteger.class
P1182
回复 0
|
赞 2
|
浏览 4.4k
import java.math.BigInteger; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); while (scan.hasNext()) { BigInteger dividend = scan.nextBigInteger();//被除数 boolean fl...
James
2021年3月7日 16:38
大数除法模板
P1182
回复 0
|
赞 0
|
浏览 9.0k
#include <iostream> #include <string> #include <algorithm> #include <vector> using namespace std; typedef long long ll; vector <int> sub(vector<int>& A,ll& b,ll& r){ vector<int> C; r=0; &n...
老猫
2021年1月17日 17:11
简洁
P1182
回复 0
|
赞 1
|
浏览 8.4k
#include <bits/stdc++.h> using namespace std; int main() { int c[10]={0}; string a; while(cin>>a) { int cnt=0; for(int b=2;b<=9;b++) { int jiewei=0; for(int i=0;i<a.size();i++) jiewei=(jiewei*10+a[i]-'0')%b;//除法核心就这么一行,输出比较烦 if(jiewei==0) ...
myhy001
2020年1月17日 19:35
大整数的因子
P1182
回复 0
|
赞 0
|
浏览 10.3k
#include<stdio.h> #include<string.h> int main() { char s[30]; while(scanf("%s",s)!=EOF) { int i,j,k,m,a[30],x,b[8]; k=strlen(s);x=0; for(i=0...
题目
大整数的因子
题解数量
5
发布题解
热门题解
1
BigInteger.class
2
简洁
3
python
4
大数除法模板
5
大整数的因子