結果

問題 No.1146 土偶Ⅰ
ユーザー tentententen
提出日時 2020-10-09 07:49:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 707 bytes
コンパイル時間 1,844 ms
コンパイル使用メモリ 74,420 KB
実行使用メモリ 41,760 KB
最終ジャッジ日時 2024-07-20 06:39:04
合計ジャッジ時間 5,734 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,312 KB
testcase_01 AC 118 ms
41,148 KB
testcase_02 AC 116 ms
41,252 KB
testcase_03 AC 130 ms
41,384 KB
testcase_04 AC 143 ms
41,716 KB
testcase_05 AC 111 ms
40,000 KB
testcase_06 AC 129 ms
41,408 KB
testcase_07 AC 135 ms
41,628 KB
testcase_08 AC 140 ms
41,652 KB
testcase_09 AC 126 ms
41,580 KB
testcase_10 AC 123 ms
41,316 KB
testcase_11 AC 137 ms
41,500 KB
testcase_12 AC 145 ms
41,720 KB
testcase_13 AC 118 ms
41,056 KB
testcase_14 AC 131 ms
41,384 KB
testcase_15 AC 133 ms
41,760 KB
testcase_16 AC 129 ms
41,504 KB
testcase_17 AC 125 ms
41,628 KB
testcase_18 AC 129 ms
41,416 KB
testcase_19 AC 125 ms
41,240 KB
testcase_20 AC 117 ms
41,268 KB
testcase_21 AC 123 ms
41,632 KB
testcase_22 AC 118 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] arr = new int[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		}
		int count = 0;
		for (int i = 0; i < n - 2; i++) {
		    for (int j = i + 1; j < n - 1; j++) {
		        int gcd = getGCD(arr[i], arr[j]);
		        for (int k = j + 1; k < n; k++) {
		            if (getGCD(gcd, arr[k]) == 1) {
		                count++;
		            }
		        }
		    }
		}
		System.out.println(count);
	}
	
	static int getGCD(int x, int y) {
	    if (x % y == 0) {
	        return y;
	    } else {
	        return getGCD(y, x % y);
	    }
	}
}
0