結果

問題 No.2425 Power Range GCD
ユーザー OmameBeansOmameBeans
提出日時 2023-08-21 01:25:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 1,598 ms
コンパイル使用メモリ 168,776 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-05-08 07:06:33
合計ジャッジ時間 3,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,400 KB
testcase_01 AC 196 ms
6,400 KB
testcase_02 AC 201 ms
6,400 KB
testcase_03 AC 198 ms
6,656 KB
testcase_04 AC 199 ms
6,528 KB
testcase_05 AC 198 ms
6,528 KB
testcase_06 AC 4 ms
6,400 KB
testcase_07 AC 4 ms
6,528 KB
testcase_08 AC 4 ms
6,528 KB
testcase_09 AC 4 ms
6,528 KB
testcase_10 AC 5 ms
6,656 KB
testcase_11 AC 4 ms
6,528 KB
testcase_12 AC 4 ms
6,528 KB
testcase_13 AC 5 ms
6,400 KB
testcase_14 AC 4 ms
6,656 KB
testcase_15 AC 5 ms
6,656 KB
testcase_16 AC 4 ms
6,656 KB
testcase_17 AC 5 ms
6,528 KB
testcase_18 AC 5 ms
6,528 KB
testcase_19 AC 4 ms
6,528 KB
testcase_20 AC 4 ms
6,528 KB
testcase_21 AC 4 ms
6,656 KB
testcase_22 AC 4 ms
6,528 KB
testcase_23 AC 4 ms
6,528 KB
testcase_24 AC 52 ms
6,656 KB
testcase_25 AC 18 ms
6,528 KB
testcase_26 AC 4 ms
6,528 KB
testcase_27 AC 24 ms
6,656 KB
testcase_28 AC 48 ms
6,528 KB
testcase_29 AC 46 ms
6,528 KB
testcase_30 AC 47 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int L,R; cin >> L >> R;
    vector<long long> fac(200010,1LL<<60), cnt(200010);

    for(int N = L; N <= R; N++) {
        int n = N;
        for(int i = 2; i*i <= N; i++) {
            if(n%i == 0) {
                ll ex = 0;
                cnt[i]++;
                while(n%i == 0) {
                    ex++;
                    n /= i;
                }
                fac[i] = min(fac[i],ex*N);
            }
        }
        if(n != 1) {
            cnt[n]++;
            fac[n] = min(fac[n],(ll)N);
        }
    }

    long long ans = 1;

    for(int i = 2; i < 200010; i++) {
        if(cnt[i] == R-L+1) {
            ans *= pow(i,fac[i]);
        }
    }

    cout << ans << endl;
}
0