結果

問題 No.864 四方演算
ユーザー ut0sut0s
提出日時 2019-08-16 22:31:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 990 bytes
コンパイル時間 1,701 ms
コンパイル使用メモリ 170,552 KB
実行使用メモリ 7,880 KB
最終ジャッジ日時 2023-10-24 01:31:06
合計ジャッジ時間 4,776 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,816 KB
testcase_01 AC 82 ms
4,348 KB
testcase_02 AC 11 ms
4,348 KB
testcase_03 AC 10 ms
4,348 KB
testcase_04 AC 11 ms
4,348 KB
testcase_05 AC 9 ms
4,348 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
  @file main.cpp
  @title No.864 四方演算
  @url https://yukicoder.me/problems/no/864
**/

#include <bits/stdc++.h>
using namespace std;

typedef long long LL;
#define ALL(obj) (obj).begin(), (obj).end()
#define REP(i, N) for (int i = 0; i < (N); ++i)

vector<LL> make_divisors(LL n) {
  vector<LL> divisors;
  for (LL i = 1; i < (LL)sqrt(n) + 1; i++) {
    if (n % i == 0) {
      divisors.push_back(i);
      if (i != (n / i)) {
        divisors.push_back(n / i);
      }
    }
  }
  // sort(ALL(divisors));
  return divisors;
}

LL seps(LL q, LL N) {
  if (q < N) {
    return q - 1;
  } else {
    LL ret = 0;
    for (LL i = 1; i <= min(q, N); i++) {
      if (q - i <= N) ret++;
    }
    return ret;
  }
}

int main() {
  LL N, K;
  cin >> N >> K;

  vector<LL> divs = make_divisors(K);

  LL ans = 0;
  for (auto i : divs) {
    if (i == 1 || i == K) {
      continue;
    }
    LL j = K / i;

    ans += seps(i, N) * seps(j, N);
  }

  cout << ans << endl;
  return 0;
  }
0