結果

問題 No.1529 Constant Lcm
ユーザー wolgnikwolgnik
提出日時 2021-06-04 20:40:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,137 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 139,028 KB
最終ジャッジ日時 2024-11-19 09:58:57
合計ジャッジ時間 62,602 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
61,668 KB
testcase_01 AC 67 ms
77,108 KB
testcase_02 AC 34 ms
59,072 KB
testcase_03 AC 34 ms
59,776 KB
testcase_04 AC 36 ms
60,476 KB
testcase_05 AC 35 ms
61,508 KB
testcase_06 AC 34 ms
60,864 KB
testcase_07 AC 34 ms
60,296 KB
testcase_08 AC 36 ms
61,348 KB
testcase_09 AC 35 ms
139,028 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 734 ms
83,656 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
mod = 998244353

class sieve:
  def __init__(self, n):
    self.n = n
    self.sv = [1] * (n + 1)
    self.sv[0] = 0
    self.sv[1] = 0
    for i in range(2, n + 1):
      if self.sv[i]:
        for j in range(i * 2, n + 1, i):
          self.sv[j] = 0
  def isprime(self, x):
    if x > self.n:
      return False
    return self.sv[x] == 1
  def factorize(self, x):
    res = []
    for i in range(2, int(x ** 0.5) + 1):
      if self.sv[i]:
        while x % i == 0:
          x //= i
          res.append(i)
    if x != 1:
      res.append(x)
    return res
  def modlcm(self, a, mod):
    res = [0] * (self.n + 1)
    ex = set()
    for i in range(len(a)):
      f = self.factorize(a[i])
      for j in f:
        if j > self.n:
          ex.add(j)
          continue
        res[j] = max(f.count(j), res[j])
    rres = 1
    for i in range(self.n + 1):
      if res[i] != 0:
        rres *= pow(i, res[i], mod)
        rres %= mod
    for i in ex:
      rres *= i
      rres %= mod
    return rres

sv = sieve(N)
a = [x * (N - x) for x in range(1, N)]
print(sv.modlcm(a, mod))
0