結果

問題 No.1529 Constant Lcm
ユーザー chocoruskchocorusk
提出日時 2021-06-04 20:20:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,570 bytes
コンパイル時間 3,758 ms
コンパイル使用メモリ 196,332 KB
実行使用メモリ 188,032 KB
最終ジャッジ日時 2024-11-19 08:41:47
合計ジャッジ時間 17,877 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
50,560 KB
testcase_01 AC 26 ms
50,688 KB
testcase_02 AC 24 ms
50,432 KB
testcase_03 AC 25 ms
50,560 KB
testcase_04 WA -
testcase_05 AC 24 ms
50,560 KB
testcase_06 WA -
testcase_07 AC 24 ms
50,432 KB
testcase_08 WA -
testcase_09 AC 26 ms
50,432 KB
testcase_10 AC 1,157 ms
164,352 KB
testcase_11 AC 390 ms
94,848 KB
testcase_12 AC 33 ms
52,736 KB
testcase_13 WA -
testcase_14 AC 508 ms
105,216 KB
testcase_15 AC 630 ms
116,608 KB
testcase_16 AC 518 ms
106,240 KB
testcase_17 AC 225 ms
77,952 KB
testcase_18 AC 251 ms
80,384 KB
testcase_19 AC 562 ms
110,464 KB
testcase_20 AC 1,368 ms
183,492 KB
testcase_21 AC 1,359 ms
184,520 KB
testcase_22 AC 1,341 ms
180,096 KB
testcase_23 AC 1,407 ms
188,032 KB
testcase_24 AC 1,350 ms
180,164 KB
testcase_25 AC 1,240 ms
171,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
using ull=unsigned long long;
using mint=modint998244353;
const int MAX=1000010;
bitset<MAX> isprime;
void sieve(){
    for(int i=3; i<MAX; i++, i++) isprime[i]=1;
    isprime[2]=1;
    for(int i=3; i<MAX; i++){
        if(isprime[i]){
            for(int j=(i<<1); j<MAX; j+=i) isprime[j]=0;
        }
    }
}
map<int, int> mp[1000010];
int mx[1000010];
int main()
{
    int n; cin>>n;
    sieve();
    for(int i=1; i<n; i++){
        if(!isprime[i]) continue;
        for(int j=i; j<n; j+=i){
            int x=j, e=0;
            while(x%i==0){
                e++;
                x/=i;
            }
            if(j<n-j) mp[j][i]+=e;
            else mp[n-j][i]+=e;
        }
    }
    for(int i=1; i<n; i++){
        for(auto p:mp[i]){
            mx[p.first]=max(mx[p.first], p.second);
        }
    }
    mint ans=1;
    for(int i=1; i<n; i++){
        if(!isprime[i]) continue;
        ans*=mint(i).pow(mx[i]);
    }
    cout<<ans.val()<<endl;
    return 0;
}
0