結果

問題 No.826 連絡網
ユーザー pekempeypekempey
提出日時 2019-05-03 21:30:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 491 ms / 2,000 ms
コード長 598 bytes
コンパイル時間 746 ms
コンパイル使用メモリ 72,180 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 05:00:22
合計ジャッジ時間 6,074 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 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 342 ms
5,376 KB
testcase_13 AC 127 ms
5,376 KB
testcase_14 AC 251 ms
5,376 KB
testcase_15 AC 26 ms
5,376 KB
testcase_16 AC 161 ms
5,376 KB
testcase_17 AC 128 ms
5,376 KB
testcase_18 AC 98 ms
5,376 KB
testcase_19 AC 403 ms
5,376 KB
testcase_20 AC 391 ms
5,376 KB
testcase_21 AC 6 ms
5,376 KB
testcase_22 AC 128 ms
5,376 KB
testcase_23 AC 168 ms
5,376 KB
testcase_24 AC 70 ms
5,376 KB
testcase_25 AC 481 ms
5,376 KB
testcase_26 AC 84 ms
5,376 KB
testcase_27 AC 353 ms
5,376 KB
testcase_28 AC 267 ms
5,376 KB
testcase_29 AC 127 ms
5,376 KB
testcase_30 AC 491 ms
5,376 KB
testcase_31 AC 154 ms
5,376 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