package
0.0.0-20241125083417-0b09d6ac830b
Repository: https://github.com/yydaily/project-euler-solution.git
Documentation: pkg.go.dev

# README

Gcd Sum

$$ G(N) = \sum_{j=1}^N \sum_{i=1}^j gcd(i, j). $$

You are given: $G(10) = 122$.

Find $G(10^{11})$. Give your answer modulo $998244353$.

# Functions

No description provided by the author
No description provided by the author