洛谷 3951 小凯的疑惑——找规律/数学

题目:https://www.luogu.org/problemnew/show/P3951

反正是a*b-a-b。使用裴蜀定理可证?从同余系的角度考虑?反正查一查就知道了。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
long long a,b;
int main()
{
    scanf("%lld%lld",&a,&b);
    printf("%lld\n",a*b-a-b);
    return 0;
}

 

posted on 2018-09-10 16:43  Narh  阅读(107)  评论(0编辑  收藏  举报

导航