aboutsummaryrefslogtreecommitdiff
path: root/test.java
blob: fa6524664b0a967b3c9b94476e3c8ed9d87fd2ad (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
// Java

public class test
{
    public static int gcd(int a, int b)
    {
        if (b > 0) return gcd(b, a % b);
        else return a;
    }
    public static void main(String args[])
    {
        System.out.println("test");

        final 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);
            }
        }
        System.out.println(ans);
    }
}