結果
問題 | No.1529 Constant Lcm |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2021-06-04 21:16:02 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 636 ms / 3,000 ms |
コード長 | 481 bytes |
コンパイル時間 | 504 ms |
コンパイル使用メモリ | 82,164 KB |
実行使用メモリ | 246,200 KB |
最終ジャッジ日時 | 2024-11-19 11:50:21 |
合計ジャッジ時間 | 9,017 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 24 |
ソースコード
n = int(input()) mod = 998244353 prime = [0]*(n+1) ans = 1 for i in range(2,n): if prime[i]: continue dic = {} for j in range(i,n,i): prime[j] = 1 c = 0 now = j while now%i == 0: now //= i c += 1 dic[j] = c m = 0 for j in range(i,n,i): if (n-j)%i: m = max(m,dic[j]) else: m = max(m,dic[j]+dic[n-j]) ans *= pow(i,m,mod) ans %= mod print(ans)