結果

問題 No.864 四方演算
ユーザー ut0sut0s
提出日時 2019-08-16 22:36:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,191 bytes
コンパイル時間 1,707 ms
コンパイル使用メモリ 170,884 KB
実行使用メモリ 8,696 KB
最終ジャッジ日時 2023-10-24 01:50:42
合計ジャッジ時間 5,397 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,696 KB
testcase_01 AC 76 ms
4,348 KB
testcase_02 AC 11 ms
4,348 KB
testcase_03 AC 10 ms
4,348 KB
testcase_04 AC 12 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 <= N; i++) {
      if (q - i <= N) ret++;
    }
    return ret;
  }
}

template <class T>
void show(vector<T>& v) {
  for (uint i = 0; i < v.size(); i++) {
    cout << v[i] << " ";
  }
  cout << "\n";
}

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

  vector<LL> divs = make_divisors(K);
  // show(divs);

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

    // cout << seps(i, N) << " , " << seps(j, N) << "\n";
    ans += seps(i, N) * seps(j, N);
  }

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