結果

問題 No.826 連絡網
ユーザー 👑 CleyLCleyL
提出日時 2023-06-29 22:48:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,543 ms / 2,000 ms
コード長 764 bytes
コンパイル時間 843 ms
コンパイル使用メモリ 89,064 KB
実行使用メモリ 18,524 KB
最終ジャッジ日時 2024-07-06 12:48:23
合計ジャッジ時間 13,757 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 5 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 979 ms
14,080 KB
testcase_13 AC 296 ms
7,424 KB
testcase_14 AC 687 ms
11,264 KB
testcase_15 AC 44 ms
6,944 KB
testcase_16 AC 407 ms
8,704 KB
testcase_17 AC 297 ms
7,552 KB
testcase_18 AC 214 ms
6,940 KB
testcase_19 AC 1,208 ms
16,000 KB
testcase_20 AC 1,171 ms
15,868 KB
testcase_21 AC 7 ms
6,940 KB
testcase_22 AC 305 ms
7,680 KB
testcase_23 AC 424 ms
8,960 KB
testcase_24 AC 153 ms
6,940 KB
testcase_25 AC 1,543 ms
18,524 KB
testcase_26 AC 177 ms
6,944 KB
testcase_27 AC 1,029 ms
14,512 KB
testcase_28 AC 740 ms
12,024 KB
testcase_29 AC 293 ms
7,424 KB
testcase_30 AC 1,497 ms
18,508 KB
testcase_31 AC 377 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#include <queue>
using namespace std;

int main(){
  int n,p;cin>>n>>p;
  vector<int> A(n+1);
  set<int> X;
  queue<int> Z;
  Z.push(p);
  A[p] = 1;
  while(Z.size()){
    auto z = Z.front();Z.pop();
    for(int i = 2; z >= i*i; i++){
      if(z%i == 0){
        if(!X.count(i)){
          X.insert(i);
          for(int j = i; n >= j; j+=i){
            A[j] = 1;
            Z.push(j);
          }
        }
        while(z%i==0)z/=i;
      }
    }
    if(z != 1){
      if(!X.count(z)){
        X.insert(z);
        for(int j = z; n >= j; j+=z){
          A[j] = 1;
          Z.push(j);
        }
      }
    }
  }
  int ans = 0;
  for(int i = 0; n >= i; i++){
    ans += A[i];
  }
  cout << ans << endl;

}
0