結果

問題 No.1529 Constant Lcm
ユーザー googol_S0googol_S0
提出日時 2021-06-04 21:05:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 310 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 79,664 KB
最終ジャッジ日時 2024-11-19 11:11:40
合計ジャッジ時間 2,633 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,552 KB
testcase_01 AC 45 ms
58,720 KB
testcase_02 AC 39 ms
52,692 KB
testcase_03 AC 39 ms
52,356 KB
testcase_04 WA -
testcase_05 AC 38 ms
52,636 KB
testcase_06 AC 38 ms
52,880 KB
testcase_07 AC 39 ms
52,640 KB
testcase_08 WA -
testcase_09 AC 37 ms
52,696 KB
testcase_10 AC 81 ms
75,992 KB
testcase_11 AC 63 ms
67,732 KB
testcase_12 AC 50 ms
62,180 KB
testcase_13 AC 81 ms
74,864 KB
testcase_14 AC 70 ms
70,660 KB
testcase_15 AC 68 ms
70,548 KB
testcase_16 AC 65 ms
69,384 KB
testcase_17 AC 59 ms
66,840 KB
testcase_18 AC 58 ms
66,088 KB
testcase_19 AC 68 ms
70,488 KB
testcase_20 AC 86 ms
79,664 KB
testcase_21 AC 88 ms
77,816 KB
testcase_22 AC 92 ms
77,700 KB
testcase_23 AC 91 ms
78,180 KB
testcase_24 AC 87 ms
78,280 KB
testcase_25 AC 94 ms
78,528 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
  ANS=ANS*pow(P[i],c,mod)%mod
print(ANS)
0