結果

問題 No.826 連絡網
ユーザー kotamanegikotamanegi
提出日時 2019-05-03 21:40:34
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,176 bytes
コンパイル時間 1,445 ms
コンパイル使用メモリ 149,140 KB
実行使用メモリ 22,656 KB
最終ジャッジ日時 2024-05-07 19:02:43
合計ジャッジ時間 17,549 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 1,734 ms
17,280 KB
testcase_13 AC 443 ms
8,960 KB
testcase_14 AC 1,106 ms
13,696 KB
testcase_15 AC 46 ms
5,376 KB
testcase_16 AC 609 ms
10,240 KB
testcase_17 AC 444 ms
8,832 KB
testcase_18 AC 307 ms
7,680 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 6 ms
5,376 KB
testcase_22 AC 453 ms
8,832 KB
testcase_23 AC 642 ms
10,496 KB
testcase_24 AC 192 ms
6,656 KB
testcase_25 TLE -
testcase_26 AC 243 ms
7,168 KB
testcase_27 AC 1,825 ms
17,792 KB
testcase_28 AC 1,196 ms
14,464 KB
testcase_29 AC 418 ms
8,832 KB
testcase_30 TLE -
testcase_31 AC 571 ms
9,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <cstring>
#include <queue>
#include <stack>
#include <math.h>
#include <iterator>
#include <vector>
#include <string>
#include <set>
#include <math.h>
#include <iostream>
#include <random>
#include <map>
#include <fstream>
#include <iomanip>
#include <time.h>
#include <stdlib.h>
#include <list>
#include <typeinfo>
#include <list>
#include <set>
#include <assert.h>
#include <complex>
#include <omp.h>
using namespace std;
#define eps 0.000001
#define LONG_INF 10000000000000
#define GOLD 1.61803398874989484820458
#define seg_size 65536*4
#define REP(i,n) for(long long i = 0;i < n;++i)
unsigned long xor128() {
	static unsigned long x = time(NULL), y = 362436069, z = 521288629, w = 88675123;
	unsigned long t = (x ^ (x << 11));
	x = y; y = z; z = w;
	return (w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)));
}
int gcd(int a, int b) {
	if (b == 0) return a;
	return gcd(b, a % b);
}
long long visited[2000000] = {};
long long nekoi[2000000] = {};
int main() {
	int n, k;
	cin >> n >> k;
	if (k == 1) {
		cout << 1 << endl;
		return 0;
	}
	visited[k] = 1;
	queue<int> now;
	now.push(k);
	while (now.empty() == false) {
		int next = now.front();
		now.pop();
		int nya = next;
		if (nekoi[nya] == 0) {
			nekoi[nya] = 1;
			for (int j = 1; j * nya <= n; ++j) {
				if (visited[j * nya] == 0) {
					visited[j * nya] = 1;
					now.push(j * nya);
				}
				nekoi[j * nya] = 1;
			}
		}
		for (int i = 2; i <= sqrt(next); ++i) {
			if (next % i == 0) {
				int nya = i;
				if (nekoi[nya] == 0) {
					nekoi[nya] = 1;
					for (int j = 1; j * nya <= n; ++j) {
						if (visited[j * nya] == 0) {
							visited[j * nya] = 1;
							now.push(j * nya);
						}
						nekoi[j * nya] = 1;
					}
				}
				nya = next / i;
				if (nekoi[nya] == 0) {
					nekoi[nya] = 1;
					for (int j = 1; j * nya <= n; ++j) {
						if (visited[j * nya] == 0) {
							visited[j * nya] = 1;
							now.push(j * nya);
						}
						nekoi[j * nya] = 1;
					}
				}
			}
		}
	}
	long long ans = 0;
	for (int i = 1; i <= n; ++i) {
		ans += visited[i];
	}
	cout << ans << endl;
	return 0;
}
0