mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 02:18:48 +00:00
P3166 [CQOI2014]数三角形
R52807909
This commit is contained in:
parent
08a11da9c6
commit
79558550a7
17
Luogu/problem/P3166/P3166.cpp
Normal file
17
Luogu/problem/P3166/P3166.cpp
Normal file
@ -0,0 +1,17 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
long long n, m, ans;
|
||||
cin >> n >> m;
|
||||
n++, m++;
|
||||
ans = n * m * (n * m - 1) * (n * m - 2) / 6 - n * m * (m - 1) * (m - 2) / 6 - m * n * (n - 1) * (n - 2) / 6;
|
||||
for (long long i = 1; i <= n; i++) {
|
||||
for (long long j = 1; j <= m; j++) {
|
||||
ans -= 2ll * (__gcd(i, j) - 1) * (n - i) * (m - j);
|
||||
}
|
||||
}
|
||||
cout << ans << endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user