主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
hellokitty1679
2024年9月8日 17:31
A+B问题 题解:C
P1000
回复 0
|
赞 0
|
浏览 575
#include<stdio.h> int main(void) { long long A,B; scanf("%lld %lld",&A,&B); printf("%lld",A+B); return 0; }
可可爱爱草莓派
2024年9月2日 10:51
A+B问题 题解:
P1000
回复 0
|
赞 0
|
浏览 1.2k
#include using namespace std; string Add(string a,string b){ int flag = 0; if(a[0] == '-' && b[0] == '-'){ a = a.substr(1,a.length() - 1); b = b.substr(1,b.length() - 1); &n...
ccccccyes
2024年8月21日 19:20
A+B问题 题解:
P1000
回复 0
|
赞 0
|
浏览 395
#include <iostream> using namespace std; int main(){ //int is approximate to 2.1 billion no need long long int a,b,add; cin>>a>>b; add = a+b; cout<<add; &n...
勋谦
2024年6月30日 15:01
A+B问题 题解:int范围为1e9,long long范围为1e18
P1000
回复 0
|
赞 1
|
浏览 725
#include <iostream> using namespace std; typedef long long LL; int main(){ LL a,b; cin >> a >> b; cout << a + b << endl; return 0; }
我与代码的故事
2024年4月20日 23:47
A+B问题 (看数据范围不会爆longlong)题解:
P1000
回复 1
|
赞 1
|
浏览 786
#include<bits/stdc++.h> using namespace std; typedef long long LL; LL a, b; int main() { cin >> a >> b; LL ans = a + b; cout << a + b; return 0; }
jerry3128
2019年12月14日 11:44
A+Bproblem (c++)<----抓换的思想
P1000
回复 7
|
赞 2
|
浏览 15.3k
这道题是我在本站上A的第一道题,那我们直接开始吧: 首先,我们要用到转换的思想,既然这道题跟代数有关,那我们便可以把它转换为图论,如图: 又因为在题目的数据中并没有负数,那么,显然这个问题就转化为了求源点S到汇点T的最大流,接着就是模板就行了 #include<bits/stdc++.h> #define INF 0x3f3f3f3f using namespace std; int getint() { int ret=0,flag=1; char c=getchar(); while(c<'0'||c>'9...
光明守护神
2024年3月30日 09:44
C++
P1000
回复 0
|
赞 0
|
浏览 619
#include<bits/stdc++.h> using namespace std; int main() { auto a=1000000000*2; auto b=a; cin>>a>>b; cout<<a+b<<endl; return 0; }
小酒
2024年3月11日 15:49
A+B问题 题解:
P1000
回复 0
|
赞 0
|
浏览 941
1000解题思路 #include <stdio.h> int main() { int A,B; scanf("%d %d",&A,&B); printf("%d",A+B); return 0; }
Cookie‘s AE86
2024年1月17日 10:52
A+B问题 题解:c++
P1000
回复 0
|
赞 1
|
浏览 1.2k
#include<bits/stdc++.h> using namespace std; int main(){ int a ,b; cin >>a >>b; cout << a+b; return 0; }
Cookie‘s AE86
2024年1月17日 10:52
A+B问题 题解:
P1000
回复 0
|
赞 1
|
浏览 708
#include<bits/stdc++.h> using namespace std; int main(){ int a ,b; cin >>a >>b; cout << a+b; return 0; }
1
2
题目
A+B问题
题解数量
20
发布题解
热门题解
1
发布一个python解法
2
A+Bproblem (c++)<----抓换的思想
3
[1000]C++
4
A+B问题 题解:
5
A+B问题 题解:c++
6
[题解]A+B问题
7
C
8
1000
9
[1000]C++
10
A+B问题 题解:int范围为1e9,long long范围为1e18,不会爆