2017 济南精英班 Day1

不管怎么掰都是n*m-1

#include<cstdio>
using namespace std;
int main()
{
    freopen("bpmp.in","r",stdin);
    freopen("bpmp.out","w",stdout);
    int n,m;
    scanf("%d%d",&n,&m);
    int ans=(1ll*n*m-1)%998244353;
    printf("%d",ans);
}
View Code

相关文章:

  • 2021-09-24
  • 2022-12-23
  • 2021-06-24
  • 2021-08-26
  • 2022-12-23
  • 2021-10-08
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-08-01
  • 2021-06-14
  • 2021-07-23
  • 2021-07-31
  • 2021-08-07
  • 2021-10-07
相关资源
相似解决方案