试一下__int128_t
原题链接:1.A+B problem2024-06-27 20:41:13
发布于:广东
#include <iostream>
#include <cstdio>
using namespace std;
__int128_t read(){
char c = getchar();
__int128_t x = 0;
while(!isdigit(c)) c = getchar();
while(isdigit(c)){
x = (x << 3) + (x << 1) + c - '0';
c = getchar();
}return x;
}
void cout_128(__int128_t n){
string s;
while(n){
s = char(n % 10 + '0') + s;
n /= 10;
}cout << s;
}
int main(){
__int128_t n = read(), m = read();
cout_128(n + m);
}
全部评论 1
可以哦
来自孙的坑底
2024-06-29 来自 广东
0
有帮助,赞一个