結果

問題 No.136 Yet Another GCD Problem
ユーザー ぴろずぴろず
提出日時 2015-01-25 23:31:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 1,336 bytes
コンパイル時間 2,554 ms
コンパイル使用メモリ 78,932 KB
実行使用メモリ 41,916 KB
最終ジャッジ日時 2024-06-23 02:55:00
合計ジャッジ時間 9,629 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,516 KB
testcase_01 AC 119 ms
40,144 KB
testcase_02 AC 124 ms
41,204 KB
testcase_03 AC 111 ms
40,028 KB
testcase_04 AC 124 ms
41,504 KB
testcase_05 AC 112 ms
40,372 KB
testcase_06 AC 130 ms
41,176 KB
testcase_07 AC 111 ms
40,264 KB
testcase_08 AC 128 ms
40,888 KB
testcase_09 AC 122 ms
41,128 KB
testcase_10 AC 123 ms
41,596 KB
testcase_11 AC 122 ms
41,176 KB
testcase_12 AC 126 ms
41,424 KB
testcase_13 AC 128 ms
41,856 KB
testcase_14 AC 118 ms
41,052 KB
testcase_15 AC 121 ms
41,144 KB
testcase_16 AC 127 ms
41,360 KB
testcase_17 AC 126 ms
41,316 KB
testcase_18 AC 108 ms
40,136 KB
testcase_19 AC 122 ms
41,164 KB
testcase_20 AC 119 ms
41,240 KB
testcase_21 AC 129 ms
41,500 KB
testcase_22 AC 123 ms
41,280 KB
testcase_23 AC 113 ms
40,060 KB
testcase_24 AC 128 ms
41,212 KB
testcase_25 AC 128 ms
41,388 KB
testcase_26 AC 110 ms
40,100 KB
testcase_27 AC 122 ms
41,212 KB
testcase_28 AC 107 ms
39,960 KB
testcase_29 AC 121 ms
41,136 KB
testcase_30 AC 126 ms
41,540 KB
testcase_31 AC 131 ms
41,360 KB
testcase_32 AC 130 ms
41,468 KB
testcase_33 AC 121 ms
41,172 KB
testcase_34 AC 121 ms
41,152 KB
testcase_35 AC 125 ms
41,420 KB
testcase_36 AC 125 ms
41,308 KB
testcase_37 AC 123 ms
41,532 KB
testcase_38 AC 124 ms
41,916 KB
testcase_39 AC 132 ms
41,620 KB
testcase_40 AC 119 ms
41,296 KB
testcase_41 AC 121 ms
41,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no136;

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

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.nextInt();
		ArrayList<Long> pf = Sieve.primeFactorL(n);

		System.out.println(n / pf.get(0));
	}

}
class Sieve {
	public static boolean[] isPrimeArray(int max) {
		boolean[] isPrime = new boolean[max+1];
		Arrays.fill(isPrime, true);
		isPrime[0] = isPrime[1] = false;
		for(int i=2;i*i<=max;i++) {
			if (isPrime[i]) {
				int j = i * 2;
				while(j<=max) {
					isPrime[j] = false;
					j += i;
				}
			}
		}
		return isPrime;
	}
	public static ArrayList<Integer> primeList(int max) {
		boolean[] isPrime = isPrimeArray(max);
		ArrayList<Integer> primeList = new ArrayList<Integer>();
		for(int i=2;i<=max;i++) {
			if (isPrime[i]) {
				primeList.add(i);
			}
		}
		return primeList;
	}

	public static ArrayList<Long> primeFactorL(ArrayList<Integer> primeList,long num) {
		ArrayList<Long> ret = new ArrayList<Long>();
		for(int p:primeList) {
			while(num % p == 0) {
				num /= p;
				ret.add((long) p);
			}
		}
		if (num > 1) {
			ret.add(num);
		}
		return ret;
	}
	public static ArrayList<Long> primeFactorL(long num) {
		return primeFactorL(primeList((int) (Math.sqrt(num) + 0.5)), num);
	}


}
0