結果

問題 No.917 Make One With GCD
ユーザー 37zigen37zigen
提出日時 2020-03-09 17:23:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 951 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 78,004 KB
実行使用メモリ 55,636 KB
最終ジャッジ日時 2024-06-24 11:15:17
合計ジャッジ時間 8,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,128 KB
testcase_01 AC 131 ms
53,944 KB
testcase_02 AC 131 ms
53,988 KB
testcase_03 AC 132 ms
54,080 KB
testcase_04 AC 134 ms
53,868 KB
testcase_05 AC 133 ms
54,248 KB
testcase_06 AC 175 ms
55,636 KB
testcase_07 AC 157 ms
54,212 KB
testcase_08 AC 130 ms
54,004 KB
testcase_09 AC 146 ms
53,956 KB
testcase_10 AC 152 ms
54,248 KB
testcase_11 AC 147 ms
54,244 KB
testcase_12 AC 148 ms
54,428 KB
testcase_13 AC 144 ms
54,392 KB
testcase_14 AC 148 ms
54,304 KB
testcase_15 AC 143 ms
54,068 KB
testcase_16 AC 141 ms
54,260 KB
testcase_17 AC 131 ms
54,012 KB
testcase_18 AC 142 ms
53,980 KB
testcase_19 AC 132 ms
54,060 KB
testcase_20 AC 134 ms
54,212 KB
testcase_21 AC 138 ms
54,244 KB
testcase_22 AC 131 ms
54,116 KB
testcase_23 AC 137 ms
54,132 KB
testcase_24 AC 138 ms
54,232 KB
testcase_25 AC 135 ms
53,948 KB
testcase_26 AC 129 ms
54,088 KB
testcase_27 AC 128 ms
54,152 KB
testcase_28 AC 129 ms
54,028 KB
testcase_29 AC 116 ms
52,784 KB
testcase_30 AC 129 ms
54,252 KB
testcase_31 AC 130 ms
54,096 KB
testcase_32 AC 116 ms
52,712 KB
testcase_33 AC 131 ms
54,200 KB
testcase_34 AC 127 ms
53,788 KB
testcase_35 AC 126 ms
53,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	int gcd(int a,int b) {
		return a==0?b:gcd(b%a,a);
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int[] a=new int[n];
		for(int i=0;i<n;++i)a[i]=sc.nextInt();
		long ng=0;
		for(int i=0;i<n;++i) {
			if(a[i]==1)continue;
			ArrayList<Integer> divs=new ArrayList<>();
			for(int div=2;div*div<=a[i];++div) {
				int sz=0;
				while(a[i]%div==0) {
					a[i]/=div;
					++sz;
				}
				if(sz>0) {
					divs.add(div);
				}
			}
			if(a[i]>1)divs.add(a[i]);
			long add=0;
			for(int s=1;s<1<<divs.size();++s) {
				long g=1;
				int sz=0;
				for(int shift=0;shift<divs.size();++shift)if((s&(1<<shift))>0)g*=divs.get(shift);
				for(int j=i+1;j<n;++j)if(a[j]%g==0)++sz;
				add+=(1L<<sz)*(Integer.bitCount(s)%2==1?1:-1);
			}
			ng+=add;
		}
		System.out.println((1L<<n)-1-ng);
	}
}


0