【数据结构】__int128

【数据结构】__int128

EveSunMaple Lv3

前言

你还在为爆long long而烦恼吗?

你还在为不会高精度而痛苦吗?

快使用__int128吧~

使用

因为__int128不支持标准的输入输出,我们只能用快读快输(还是个优点?)。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
inline __int128 read()
{
__int128 x = 0, f = 1;
char ch = getchar();
while(ch < '0' || ch > '9')
{
if(ch == '-')
f = -1;
ch = getchar();
}
while(ch >= '0' && ch <= '9')
{
x = x * 10 + ch - '0';
ch = getchar();
}
return x * f;
}
inline void print(__int128 x)
{
if(x < 0)
{
putchar('-');
x = -x;
}
if(x > 9)
print(x / 10);
putchar(x % 10 + '0');
}
  • 标题: 【数据结构】__int128
  • 作者: EveSunMaple
  • 创建于 : 2023-07-05 00:07:00
  • 更新于 : 2024-02-23 12:02:20
  • 链接: https://old.saroprock.com/post/50bb6aa5.html
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
 评论
此页目录
【数据结构】__int128