結果

問題 No.826 連絡網
ユーザー pekempeypekempey
提出日時 2019-05-03 21:30:54
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 485 ms / 2,000 ms
コード長 598 bytes
コンパイル時間 625 ms
コンパイル使用メモリ 72,064 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-24 02:13:53
合計ジャッジ時間 5,734 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 339 ms
5,248 KB
testcase_13 AC 124 ms
5,248 KB
testcase_14 AC 242 ms
5,248 KB
testcase_15 AC 25 ms
5,248 KB
testcase_16 AC 154 ms
5,248 KB
testcase_17 AC 125 ms
5,248 KB
testcase_18 AC 96 ms
5,248 KB
testcase_19 AC 395 ms
5,248 KB
testcase_20 AC 388 ms
5,248 KB
testcase_21 AC 5 ms
5,248 KB
testcase_22 AC 128 ms
5,248 KB
testcase_23 AC 167 ms
5,248 KB
testcase_24 AC 68 ms
5,248 KB
testcase_25 AC 475 ms
5,248 KB
testcase_26 AC 83 ms
5,248 KB
testcase_27 AC 343 ms
5,248 KB
testcase_28 AC 261 ms
5,248 KB
testcase_29 AC 124 ms
5,248 KB
testcase_30 AC 485 ms
5,248 KB
testcase_31 AC 150 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#define REP(i, n) for (int i = 0; i < (n); i++)

using namespace std;

int main() {
  int N, P;
  cin >> N >> P;
  vector<bool> can(N+1);
  can[P] = true;
  for (int ii = 0; ii < 10; ii++) {
    for (int i = N; i >= 2; i--) {
      for (int j = i*2; j <= N; j += i) {
        can[i] = can[i] || can[j];
      }
    }
    for (int i = 2; i <= N; i++) {
      for (int j = i*2; j <= N; j += i) {
        can[j] = can[j] || can[i];
      }
    }
  }
  int ans = count(can.begin(), can.end(), true);
  cout << ans << '\n';
}
0