板子-__int128

Posted yycx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了板子-__int128相关的知识,希望对你有一定的参考价值。

__int128 是比 long long 还要大的数据类型((max = 2^{128}-1)
其输入和输出不能用常规方法,用 read() 和 write() 函数代替

#include<bits/stdc++.h>

using namespace std;

__int128 read(int f = 1) {
    char ch = getchar();
    __int128 res = 0;
    while(ch > ‘9‘ || ch < ‘0‘) {
        if (ch == ‘-‘) f *= -1;
        ch = getchar();
    }
    while(ch <= ‘9‘ && ch >= ‘0‘) {
        res = res * 10 + (ch ^ 48);
        ch = getchar();
    }
    return res * f;
}

void write(__int128 n) {
    if (n < 0) {
        putchar(‘-‘);
        n *= -1;
    }
    if (n/10) write(n/10);
    putchar(n%10+‘0‘);
}

int main() {
    __int128 n = read();
    write(n);
    return 0;
}


以上是关于板子-__int128的主要内容,如果未能解决你的问题,请参考以下文章

内联汇编代码和存储 128 位结果

关于__int128

关于__int128

__int128

Strassen __128int

__int128使用