aboutsummaryrefslogtreecommitdiff
path: root/test.cs
blob: 48265c2321abbc2120a0e56a4bf90580baad8af6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// C#

using System;
class test
{
    static int gcd(int a, int b)
    {
        if (b > 0) return gcd(b, a % b);
        else return a;
    }
    static void Main()
    {
        Console.WriteLine("test");

        const int N = 1000;
        int[] A = new int[N];
        for (int i = 0; i < N; i++)
        {
            A[i] = i;
        }

        int ans = 0;
        for (int i = 0; i < N; i++)
        {
            for (int j = 0; j < N; j++)
            {
                ans += gcd(i, j);
            }
        }
        Console.WriteLine(ans);
    }
}