結果

問題 No.1529 Constant Lcm
ユーザー kotatsugamekotatsugame
提出日時 2021-06-04 20:13:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 3,000 ms
コード長 577 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 66,816 KB
実行使用メモリ 12,260 KB
最終ジャッジ日時 2024-04-29 23:18:07
合計ジャッジ時間 2,168 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 61 ms
11,340 KB
testcase_11 AC 20 ms
6,656 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 47 ms
10,368 KB
testcase_14 AC 28 ms
8,064 KB
testcase_15 AC 30 ms
8,320 KB
testcase_16 AC 23 ms
7,168 KB
testcase_17 AC 12 ms
5,504 KB
testcase_18 AC 13 ms
5,632 KB
testcase_19 AC 29 ms
8,192 KB
testcase_20 AC 67 ms
12,116 KB
testcase_21 AC 68 ms
12,092 KB
testcase_22 AC 73 ms
12,112 KB
testcase_23 AC 75 ms
12,200 KB
testcase_24 AC 67 ms
12,152 KB
testcase_25 AC 71 ms
12,260 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    9 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int N;
bool isp[1<<20];
int vis[1<<20];
int cnt[1<<20];
main()
{
	cin>>N;
	mint ans=1;
	for(int i=2;i<N;i++)if(!isp[i])
	{
		int mx=0;
		int t=1;
		while(t<=(N-1)/i)
		{
			t*=i;
			for(int j=t;j<N;j+=t)
			{
				if(vis[j]<i)cnt[j]=0,vis[j]=i;
				cnt[j]++;
				if(mx<cnt[j])mx=cnt[j];
				if(vis[N-j]<i)cnt[N-j]=0,vis[N-j]=i;
				cnt[N-j]++;
				if(mx<cnt[N-j])mx=cnt[N-j];
			}
		}
		ans*=mint(i).pow(mx);
		for(int j=i+i;j<N;j+=i)isp[j]=true;
	}
	cout<<ans.val()<<endl;
}
0