結果

問題 No.1146 土偶Ⅰ
ユーザー tentententen
提出日時 2022-09-16 13:21:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 1,735 bytes
コンパイル時間 2,503 ms
コンパイル使用メモリ 77,380 KB
実行使用メモリ 37,572 KB
最終ジャッジ日時 2024-06-01 05:29:13
合計ジャッジ時間 5,130 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,024 KB
testcase_01 AC 53 ms
37,088 KB
testcase_02 AC 56 ms
37,208 KB
testcase_03 AC 55 ms
36,672 KB
testcase_04 AC 69 ms
37,572 KB
testcase_05 AC 57 ms
37,004 KB
testcase_06 AC 64 ms
36,964 KB
testcase_07 AC 68 ms
37,440 KB
testcase_08 AC 66 ms
37,428 KB
testcase_09 AC 59 ms
37,236 KB
testcase_10 AC 55 ms
37,216 KB
testcase_11 AC 61 ms
36,780 KB
testcase_12 AC 67 ms
37,524 KB
testcase_13 AC 55 ms
36,896 KB
testcase_14 AC 59 ms
37,132 KB
testcase_15 AC 72 ms
37,180 KB
testcase_16 AC 61 ms
37,052 KB
testcase_17 AC 55 ms
37,216 KB
testcase_18 AC 54 ms
37,128 KB
testcase_19 AC 59 ms
37,156 KB
testcase_20 AC 54 ms
37,092 KB
testcase_21 AC 56 ms
37,016 KB
testcase_22 AC 54 ms
37,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        int ans = 0;
        for (int i = 0; i < n - 2; i++) {
            for (int j = i + 1; j < n - 1; j++) {
                int gcd = getGCD(values[i], values[j]);
                if (gcd == 1) {
                    ans += n - j - 1;
                    continue;
                }
                for (int k = j + 1; k < n; k++) {
                    if (getGCD(gcd, values[k]) == 1) {
                        ans++;
                    }
                }
            }
        }
        System.out.println(ans);
    }
    
    static int getGCD(int x, int y) {
        if (y == 0) {
            return x;
        } else {
            return getGCD(y, x % y);
        }
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0