結果

問題 No.1529 Constant Lcm
ユーザー nasutarou1341nasutarou1341
提出日時 2021-06-04 20:26:38
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 658 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 375,556 KB
最終ジャッジ日時 2024-04-29 23:50:01
合計ジャッジ時間 17,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 69 ms
67,328 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 2,319 ms
349,040 KB
testcase_11 AC 813 ms
183,680 KB
testcase_12 AC 111 ms
82,176 KB
testcase_13 AC 2,030 ms
310,684 KB
testcase_14 AC 1,091 ms
226,304 KB
testcase_15 AC 1,182 ms
234,496 KB
testcase_16 AC 855 ms
199,040 KB
testcase_17 AC 463 ms
142,976 KB
testcase_18 AC 534 ms
148,608 KB
testcase_19 AC 1,138 ms
230,400 KB
testcase_20 TLE -
testcase_21 AC 2,677 ms
375,496 KB
testcase_22 AC 2,626 ms
375,368 KB
testcase_23 AC 2,668 ms
375,252 KB
testcase_24 AC 2,651 ms
375,148 KB
testcase_25 AC 2,657 ms
375,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
MOD = 998244353

V = [i for i in range(N)]
L = [{} for i in range(N)]
for i in range(2, N):
  if V[i] != 1:
    t = V[i]
    for j in range(i, N, i):
      V[j] //= t
      if t in L[j]:
        L[j][t] += 1
      else:
        L[j][t] = 1

R = {}
for i in range(1, N // 2 + 1):
  t = N - i
  for k, v in L[i].items():
    if k in L[t]:
      v += L[t][k]
    if k not in R:
      R[k] = v
    else:
      R[k] = max(R[k], v)
  for k, v in L[t].items():
    if k in L[i]:
      v += L[i][k]
    if k not in R:
      R[k] = v
    else:
      R[k] = max(R[k], v)

ans = 1
for k, v in R.items():
  ans *= pow(k, v, MOD)
  ans %= MOD

print(ans)
0