結果

問題 No.1529 Constant Lcm
ユーザー googol_S0googol_S0
提出日時 2021-06-04 21:06:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 3,000 ms
コード長 330 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-04-30 00:59:02
合計ジャッジ時間 2,761 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 48 ms
58,368 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 41 ms
51,456 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 44 ms
51,968 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 42 ms
51,584 KB
testcase_09 AC 40 ms
51,456 KB
testcase_10 AC 95 ms
76,160 KB
testcase_11 AC 70 ms
67,584 KB
testcase_12 AC 55 ms
61,824 KB
testcase_13 AC 88 ms
74,368 KB
testcase_14 AC 76 ms
70,272 KB
testcase_15 AC 79 ms
70,528 KB
testcase_16 AC 71 ms
68,224 KB
testcase_17 AC 63 ms
65,664 KB
testcase_18 AC 65 ms
66,176 KB
testcase_19 AC 76 ms
70,144 KB
testcase_20 AC 100 ms
77,952 KB
testcase_21 AC 99 ms
77,952 KB
testcase_22 AC 102 ms
77,952 KB
testcase_23 AC 98 ms
77,696 KB
testcase_24 AC 101 ms
77,824 KB
testcase_25 AC 99 ms
77,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
mod=998244353
P=[]
F=[0]*(N+1)
for i in range(2,N):
  if F[i]:
    continue
  P.append(i)
  for j in range(i,N,i):
    F[j]=1
ANS=1
for i in range(len(P)):
  c=0
  M=N
  while M%P[i]==0:
    M//=P[i]
    c+=1
  x=1
  while N>=x*P[i]:
    x*=P[i]
    c+=1
  if x==N:
    c-=2
  ANS=ANS*pow(P[i],c,mod)%mod
print(ANS)
0