主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
Amberqwe
2024年3月27日 18:05
特殊乘法 题解:
P1168
回复 0
|
赞 0
|
浏览 371
百分之40 #include <stdio.h> #include <string.h> #include <stdlib.h> int main() { int a, b; char x[20], y[20]; int sum = 0; while (scanf("%d %d", &a, &b) != EOF) { &n...
uno!
2022年3月8日 11:15
非嵌套logn算法
P1168
回复 0
|
赞 0
|
浏览 5.9k
#include<iostream> #include<cstdlib> #include<cstdio> using namespace std; int main(){ int a,b,a_sum,res; while(~scanf("%d%d",&a,&b)){ a_sum=0,res=0; while(a){ a_sum+=a%10; a/=10; } while(b){...
sincerely_LM
2021年3月10日 23:42
字符化处理:注意用str-'0'转换回数字
P1168
回复 0
|
赞 1
|
浏览 8.2k
#include <iostream> #include <string> using namespace std; int main(int argc, char const *argv[]) { string str1,str2; while(cin>>str1>>str2){ long long Sum = 0 ; for (int i = 0; i < str1.length(); ++i) { for (int j = 0; j < str2.l...
Lucky_Bug
2020年4月10日 21:12
[c]算是简单易懂的暴力算法
P1168
回复 2
|
赞 1
|
浏览 9.5k
#include<stdio.h> int main() { long long m ,n,k; int ans = 0; while(scanf("%d%d",&m,&n)!=EOF) { k = m; while(n!=0) { m = k; while(m!=0) { ans = ans + (m%10)*(n%10); m = (m - (m%10))/10; } n = (n - (n%10))/10; } printf("%d\n",...
题目
特殊乘法
题解数量
4
发布题解
热门题解
1
字符化处理:注意用str-'0'转换回数字
2
[c]算是简单易懂的暴力算法
3
非嵌套logn算法
4
特殊乘法 题解: