結果

問題 No.1529 Constant Lcm
ユーザー O2MTO2MT
提出日時 2021-06-04 22:16:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 262 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 137,416 KB
最終ジャッジ日時 2024-11-19 15:19:32
合計ジャッジ時間 61,907 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
59,036 KB
testcase_01 AC 42 ms
137,416 KB
testcase_02 WA -
testcase_03 AC 34 ms
60,640 KB
testcase_04 AC 35 ms
59,012 KB
testcase_05 AC 39 ms
128,060 KB
testcase_06 AC 36 ms
59,812 KB
testcase_07 AC 36 ms
128,644 KB
testcase_08 AC 35 ms
59,420 KB
testcase_09 AC 35 ms
128,848 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 161 ms
82,244 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(x, y):
  if y == 0:
      return x
  else:
      return gcd(y,x%y)

 #最小公倍数
def lcm(a,b):
  return a*(b//gcd(a,b))

N = int(input())
MOD = 998244353
num = lcm(N-1,2*(N-2))
for i in range(3,N//2+1):
  num = lcm(num,i*(N-i))
num %= MOD
print(num)
0