Submit solution
Points:
1.00 (partial)
Time limit:
1.0s
Memory limit:
256M
Author:
Problem type
Allowed languages
C, C#, C++, Go, Java, Pascal, Perl, PHP, Python, Ruby, Rust, Scratch, Swift
Cho hai số nguyên không âm ~a~ và ~b~. Hãy tính ~a + b~.
Input
- Dòng đầu chứa số ~a~.
- Dòng sau chứa số ~b~.
Giới hạn:
- ~0 ≤ a, b < 10^{1000000} (a, b\text{ có không quá }10^5\text{ chữ số})~
Output
- Gồm một dòng duy nhất là kết quả của ~a + b~.
Sample
Input #1
123
4567
Output #1
4690
Input #2
1234567890
9879879876543219876
Output #2
9879879877777787766
Problem source: Chuyên Sơn La Online Judge
Comments
include<bits/stdc++.h>
pragma GCC optimize("03","unroll-loops")
define ift intfast64t
using namespace std; using ll=long long int; string cong(string a,string b) { while(a.size()<b.size()) a='0'+a; while(a.size()>b.size()) b='0'+b; string c=a; ll k=0; for(ll i=a.size()-1;i>=0;--i) { ll kq=a[i]+b[i]-96+k; k=kq/10; c[i]=char(kq%10)+48; } return(k==0)?c:'1'+c; } signed main() { iosbase::syncwith_stdio(false); cin.tie(NULL);cout.tie(NULL); string a,b; cin>>a>>b; cout<<cong(a,b); }
include <bits/stdc++.h>
using namespace std; int main() { string a, b; cin>>a>>b; string c; long long n1=a.length(), n2=b.length(), nho=0, tong; if(n1<n2){ a.insert(0,n2-n1,'0'); } else{ b.insert(0,n1-n2,'0'); } c=a; for(long long i=a.length()-1;i>=0;i--){ tong=(a[i]-48)+(b[i]-48)+nho; nho=tong/10; tong=tong%10; c[i]=tong+48; } if(nho>0){ c=char(nho+48)+c; } cout<<c;
}
code c++ đi đừng xài py
This comment is hidden due to too much negative feedback. Show it anyway.
This comment is hidden due to too much negative feedback. Show it anyway.
This comment is hidden due to too much negative feedback. Show it anyway.
python nhìn chỉ biết cười =))
This comment is hidden due to too much negative feedback. Show it anyway.
python thì dễ mà sao c++ khó thế nhỉ
This comment is hidden due to too much negative feedback. Show it anyway.
sao em lại sai đúng test case 8 thôi nhỉ, em code bằng c và dùng stack để cộng. Có ai code kiểu này không chỉ giáo em với
Code python có thể AC
Khó quá
case 5 có bị sai test ko ạ
Test case 9 là gì vậy mọi người