結果

問題 No.1529 Constant Lcm
ユーザー nasutarou1341nasutarou1341
提出日時 2021-06-04 20:26:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,646 ms / 3,000 ms
コード長 658 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 375,240 KB
最終ジャッジ日時 2024-11-19 09:02:35
合計ジャッジ時間 27,083 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,224 KB
testcase_01 AC 61 ms
68,028 KB
testcase_02 AC 39 ms
51,752 KB
testcase_03 AC 39 ms
53,160 KB
testcase_04 AC 39 ms
52,880 KB
testcase_05 AC 38 ms
53,272 KB
testcase_06 AC 38 ms
52,812 KB
testcase_07 AC 38 ms
53,248 KB
testcase_08 AC 38 ms
52,616 KB
testcase_09 AC 38 ms
51,876 KB
testcase_10 AC 2,279 ms
349,160 KB
testcase_11 AC 778 ms
183,860 KB
testcase_12 AC 96 ms
82,160 KB
testcase_13 AC 1,967 ms
310,680 KB
testcase_14 AC 1,047 ms
226,048 KB
testcase_15 AC 1,133 ms
233,964 KB
testcase_16 AC 821 ms
198,904 KB
testcase_17 AC 439 ms
143,024 KB
testcase_18 AC 503 ms
148,792 KB
testcase_19 AC 1,082 ms
230,532 KB
testcase_20 AC 2,538 ms
374,968 KB
testcase_21 AC 2,548 ms
375,240 KB
testcase_22 AC 2,534 ms
375,116 KB
testcase_23 AC 2,646 ms
374,996 KB
testcase_24 AC 2,602 ms
375,148 KB
testcase_25 AC 2,633 ms
375,172 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