結果

問題 No.1532 Different Products
ユーザー 👑 NachiaNachia
提出日時 2021-06-04 20:27:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 407 ms / 4,000 ms
コード長 1,001 bytes
コンパイル時間 575 ms
コンパイル使用メモリ 77,512 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 23:50:44
合計ジャッジ時間 15,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 109 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 13 ms
5,376 KB
testcase_07 AC 18 ms
5,376 KB
testcase_08 AC 20 ms
5,376 KB
testcase_09 AC 47 ms
5,376 KB
testcase_10 AC 102 ms
5,376 KB
testcase_11 AC 88 ms
5,376 KB
testcase_12 AC 198 ms
5,376 KB
testcase_13 AC 135 ms
5,376 KB
testcase_14 AC 328 ms
5,376 KB
testcase_15 AC 32 ms
5,376 KB
testcase_16 AC 150 ms
5,376 KB
testcase_17 AC 91 ms
5,376 KB
testcase_18 AC 73 ms
5,376 KB
testcase_19 AC 186 ms
5,376 KB
testcase_20 AC 322 ms
5,376 KB
testcase_21 AC 169 ms
5,376 KB
testcase_22 AC 131 ms
5,376 KB
testcase_23 AC 97 ms
5,376 KB
testcase_24 AC 291 ms
5,376 KB
testcase_25 AC 188 ms
5,376 KB
testcase_26 AC 59 ms
5,376 KB
testcase_27 AC 199 ms
5,376 KB
testcase_28 AC 149 ms
5,376 KB
testcase_29 AC 195 ms
5,376 KB
testcase_30 AC 234 ms
5,376 KB
testcase_31 AC 233 ms
5,376 KB
testcase_32 AC 254 ms
5,376 KB
testcase_33 AC 228 ms
5,376 KB
testcase_34 AC 288 ms
5,376 KB
testcase_35 AC 266 ms
5,376 KB
testcase_36 AC 281 ms
5,376 KB
testcase_37 AC 188 ms
5,376 KB
testcase_38 AC 294 ms
5,376 KB
testcase_39 AC 267 ms
5,376 KB
testcase_40 AC 271 ms
5,376 KB
testcase_41 AC 368 ms
5,376 KB
testcase_42 AC 330 ms
5,376 KB
testcase_43 AC 342 ms
5,376 KB
testcase_44 AC 370 ms
5,376 KB
testcase_45 AC 368 ms
5,376 KB
testcase_46 AC 364 ms
5,376 KB
testcase_47 AC 374 ms
5,376 KB
testcase_48 AC 385 ms
5,376 KB
testcase_49 AC 407 ms
5,376 KB
testcase_50 AC 393 ms
5,376 KB
testcase_51 AC 371 ms
5,376 KB
testcase_52 AC 363 ms
5,376 KB
testcase_53 AC 377 ms
5,376 KB
testcase_54 AC 368 ms
5,376 KB
testcase_55 AC 365 ms
5,376 KB
testcase_56 AC 358 ms
5,376 KB
testcase_57 AC 365 ms
5,376 KB
testcase_58 AC 368 ms
5,376 KB
testcase_59 AC 368 ms
5,376 KB
testcase_60 AC 381 ms
5,376 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 377 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using ll = long long;
using ull = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

ll N, K;
vector<ll> dp_fairy;
vector<ll> dp_devil;

int main(){
  cin >> N >> K;
  ll fairy_count = min(K,100000ll);
  dp_fairy.assign(fairy_count+1,0);
  ll devil_count = (K+fairy_count-1) / fairy_count;
  dp_devil.assign(devil_count+1,0);
  dp_devil[1] = 1;

  for(int a=1; a<=N; a++){
    for(ll i=a; i<=fairy_count; i++){
      dp_fairy[i/a] += dp_fairy[i];
    }
    for(ll i=devil_count; i>=1; i--){
      if(i*a <= devil_count) dp_devil[i*a] += dp_devil[i];
      else dp_fairy[K/(i*a)] += dp_devil[i];
    }
  }

  ll ans = 0;
  for(ll i=1; i<=fairy_count; i++) ans += dp_fairy[i];
  for(ll i=0; i<=devil_count; i++) ans += dp_devil[i];

  cout << (ans-1) << "\n";
  return 0;
}



struct ios_do_not_sync{
  ios_do_not_sync(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
  }
} ios_do_not_sync_instance;


0