結果
問題 | No.1529 Constant Lcm |
ユーザー | Aurora |
提出日時 | 2021-06-06 18:43:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 762 bytes |
コンパイル時間 | 1,891 ms |
コンパイル使用メモリ | 179,084 KB |
実行使用メモリ | 314,112 KB |
最終ジャッジ日時 | 2024-11-23 03:34:57 |
合計ジャッジ時間 | 39,085 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 5 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 1,066 ms
107,272 KB |
testcase_12 | AC | 35 ms
8,320 KB |
testcase_13 | AC | 2,659 ms
232,864 KB |
testcase_14 | AC | 1,430 ms
134,144 KB |
testcase_15 | AC | 1,594 ms
158,436 KB |
testcase_16 | AC | 1,191 ms
132,608 KB |
testcase_17 | AC | 553 ms
67,932 KB |
testcase_18 | AC | 611 ms
73,504 KB |
testcase_19 | AC | 1,467 ms
145,280 KB |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int N; cin >> N; vector<map<int,int>> cnt(N-1); for(int i=1;i<N;i++){ int t = i; while(t%2 == 0){ t /= 2; cnt[i-1][2]++; } for(int j=3;j<=sqrt(i);j+=2){ while(t%j == 0){ t /= j; cnt[i-1][j]++; } } if(t != 1) cnt[i-1][t]++; } map<int,int> Map; for(int i=0;i<N-1;i++){ for(auto x:cnt[i]) Map[x.first] = max(Map[x.first],cnt[i][x.first]+cnt[N-2-i][x.first]); for(auto x:cnt[N-2-i]) Map[x.first] = max(Map[x.first],cnt[i][x.first]+cnt[N-2-i][x.first]); } long long int ans = 1,MOD=998244353; for(auto x:Map){ for(int j=0;j<x.second;j++){ ans *= x.first; ans %= MOD; } } cout << ans << endl; }