結果

問題 No.1396 Giri
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-17 17:03:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 876 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 159,124 KB
最終ジャッジ日時 2024-06-10 23:33:33
合計ジャッジ時間 6,839 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 537 ms
159,104 KB
testcase_03 AC 40 ms
54,272 KB
testcase_04 AC 55 ms
53,888 KB
testcase_05 AC 539 ms
158,936 KB
testcase_06 AC 41 ms
53,888 KB
testcase_07 AC 39 ms
54,016 KB
testcase_08 AC 40 ms
53,760 KB
testcase_09 AC 41 ms
53,632 KB
testcase_10 AC 40 ms
53,760 KB
testcase_11 AC 40 ms
53,760 KB
testcase_12 AC 39 ms
53,504 KB
testcase_13 AC 40 ms
53,632 KB
testcase_14 AC 40 ms
53,888 KB
testcase_15 AC 44 ms
54,400 KB
testcase_16 AC 65 ms
67,840 KB
testcase_17 AC 72 ms
74,112 KB
testcase_18 AC 100 ms
81,664 KB
testcase_19 AC 297 ms
117,248 KB
testcase_20 AC 410 ms
134,596 KB
testcase_21 AC 479 ms
150,272 KB
testcase_22 AC 534 ms
159,124 KB
testcase_23 AC 555 ms
159,104 KB
testcase_24 AC 552 ms
159,104 KB
testcase_25 AC 567 ms
159,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
mod=998244353

# エラトステネスの篩。高速素因数分解ver
# ret[x]:xを篩い落とす最大の素数。xが素数ならxが入る
# ret[ii]=min(i,ret[ii])とすれば最小の整数が入る。
def eratosthenes(n):
  ret=list(range(n+1))
  for i in range(2,int(n**.5)+1):
    if ret[i]!=i:continue
    ii=i
    while ii<=n:
      ret[ii]=i
      ii+=i
  return ret
# 例:x(<=n)を素因数分解する
from collections import defaultdict
d=eratosthenes(n)
mxp=n
for i in reversed(range(n+1)):
  if d[i]==i:
    mxp=i
    break
nums=[i for i in range(1,n+1) if i!=mxp]
cnt={}
for x in nums:
  c={}
  while x!=1:
    if d[x] in c:
      c[d[x]]+=1
    else:
      c[d[x]]=1
    x//=d[x]
  for k,v in c.items():
    if k in cnt:
      cnt[k]=max(cnt[k],v)
    else:
      cnt[k]=v
ans=1
for k,v in cnt.items():
  ans=ans*pow(k,v,mod)%mod
print(ans)
0