定义

  __int128 n,r,g,b,T;
  __int128 ans;
  __int128 f[1025][1025];

取最大值函数

  __int128 getmax(__int128 a,__int128 b){
    if (a>b) return(a);else return(b);
  }

输出

  void print(__int128 x){
        if (x==0) return;
    if (x) print(x/10);
    putchar(x%10+'0');
  }

其余与整形类似,对于略大于LL范围值计算方便

相关文章:

  • 2022-12-23
  • 2021-11-19
  • 2022-01-13
  • 2021-12-05
  • 2021-05-27
  • 2022-03-07
  • 2021-10-06
猜你喜欢
  • 2021-10-22
  • 2022-12-23
  • 2022-01-19
  • 2022-12-23
  • 2022-12-23
  • 2023-01-24
相关资源
相似解决方案