結果

問題 No.847 Divisors of Power
ユーザー ngtkanangtkana
提出日時 2020-03-11 22:50:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 635 bytes
コンパイル時間 2,867 ms
コンパイル使用メモリ 208,400 KB
実行使用メモリ 17,956 KB
最終ジャッジ日時 2024-11-16 03:22:29
合計ジャッジ時間 14,796 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 2 ms
17,956 KB
testcase_02 AC 3 ms
13,636 KB
testcase_03 AC 3 ms
12,836 KB
testcase_04 AC 18 ms
13,636 KB
testcase_05 AC 7 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 7 ms
6,820 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 7 ms
6,816 KB
testcase_14 AC 4 ms
6,820 KB
testcase_15 TLE -
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 8 ms
6,816 KB
testcase_18 AC 197 ms
6,816 KB
testcase_19 AC 1,791 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 TLE -
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 TLE -
testcase_25 AC 31 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
13,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define endl enjoy_codeforces
using lint=long long;
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    int n,k,m;std::cin>>n>>k>>m;
    auto mul=[m](const std::set<int>&a,const std::set<int>&b){
        std::set<int>c;
        for(int x:a)for(int y:b){
            if(x<=m/y)c.insert(x*y);
        }
        return c;
    };
    std::set<int>a;
    for(int i=1;i*i<=n;i++){
        if(n%i!=0)continue;
        a.insert(i);
        a.insert(n/i);
    }
    std::set<int>b={1};
    for(;k;k>>=1){
        if(k&1)b=mul(b,a);
        a=mul(a,a);
    }
    std::cout<<b.size()<<'\n';
}
0