結果

問題 No.826 連絡網
ユーザー tentententen
提出日時 2020-09-01 02:54:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 918 bytes
コンパイル時間 2,272 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-11-17 04:40:15
合計ジャッジ時間 8,691 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,016 KB
testcase_01 AC 135 ms
53,828 KB
testcase_02 AC 137 ms
54,140 KB
testcase_03 AC 139 ms
54,176 KB
testcase_04 AC 143 ms
54,168 KB
testcase_05 AC 141 ms
53,972 KB
testcase_06 AC 140 ms
54,284 KB
testcase_07 AC 140 ms
53,896 KB
testcase_08 AC 141 ms
53,972 KB
testcase_09 AC 139 ms
54,136 KB
testcase_10 AC 135 ms
54,104 KB
testcase_11 AC 140 ms
54,028 KB
testcase_12 AC 184 ms
53,704 KB
testcase_13 AC 162 ms
54,076 KB
testcase_14 AC 181 ms
53,848 KB
testcase_15 AC 157 ms
53,864 KB
testcase_16 AC 170 ms
53,888 KB
testcase_17 AC 164 ms
54,184 KB
testcase_18 AC 162 ms
54,008 KB
testcase_19 AC 197 ms
53,972 KB
testcase_20 AC 172 ms
53,900 KB
testcase_21 AC 140 ms
54,140 KB
testcase_22 AC 163 ms
53,952 KB
testcase_23 AC 166 ms
54,092 KB
testcase_24 AC 160 ms
53,996 KB
testcase_25 AC 200 ms
53,728 KB
testcase_26 AC 161 ms
54,144 KB
testcase_27 AC 186 ms
54,248 KB
testcase_28 AC 179 ms
54,088 KB
testcase_29 AC 161 ms
54,044 KB
testcase_30 AC 202 ms
54,180 KB
testcase_31 AC 165 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static boolean[] used;
    static int n;
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	n = sc.nextInt();
    	used = new boolean[n + 1];
        int p = sc.nextInt();
        for (int i = 2; i <= Math.sqrt(p); i++) {
            if (p % i == 0) {
                setUse(i);
                p /= i;
                while (p % i == 0) {
                    p /= i;
                }
            }
        }
        if (p > 1) {
            setUse(p);
        }
        int count = 0;
        for (int i = 1; i <= n; i++) {
            if (used[i]) {
                count++;
            }
        }
    	System.out.println(count);
	}
	
	static void setUse(int x) {
	    if (used[x]) {
	        return;
	    }
	    used[x] = true;
	    for (int i = 2; i * x <= n; i++) {
	        used[i * x] = true;
	        setUse(i);
	    }
	}
}
0