結果

問題 No.1146 土偶Ⅰ
ユーザー face4face4
提出日時 2020-08-05 19:32:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 2,048 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 50,972 KB
最終ジャッジ日時 2024-09-17 09:47:22
合計ジャッジ時間 3,802 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
49,912 KB
testcase_01 AC 47 ms
50,128 KB
testcase_02 AC 47 ms
49,880 KB
testcase_03 AC 50 ms
50,276 KB
testcase_04 AC 61 ms
50,548 KB
testcase_05 AC 51 ms
50,236 KB
testcase_06 AC 55 ms
50,152 KB
testcase_07 AC 71 ms
50,880 KB
testcase_08 AC 74 ms
50,924 KB
testcase_09 AC 55 ms
50,060 KB
testcase_10 AC 51 ms
49,908 KB
testcase_11 AC 56 ms
50,276 KB
testcase_12 AC 71 ms
50,972 KB
testcase_13 AC 48 ms
50,064 KB
testcase_14 AC 52 ms
50,200 KB
testcase_15 AC 60 ms
50,716 KB
testcase_16 AC 54 ms
50,216 KB
testcase_17 AC 46 ms
50,304 KB
testcase_18 AC 51 ms
50,112 KB
testcase_19 AC 54 ms
50,244 KB
testcase_20 AC 49 ms
50,268 KB
testcase_21 AC 51 ms
50,264 KB
testcase_22 AC 49 ms
49,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Main {
    static int gcd(int a, int b){
        return b == 0 ? a : gcd(b, a%b);
    }
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        int a[] = new int[n];
        for(int i = 0; i < n; i++){
            a[i] = Integer.parseInt(br.readLine());
        }
        int ans = 0;
        for(int i = 0; i < n; i++){
            for(int j = i+1; j < n; j++){
                int g = gcd(a[i], a[j]);
                if(g == 1){
                    ans += n-j-1;
                    continue;
                }
                for(int k = j+1; k < n; k++){
                    ans += gcd(g, a[k])==1 ? 1 : 0;
                }
            }
        }
        System.out.println(ans);
    }
}
0