結果

問題 No.1529 Constant Lcm
ユーザー harurunharurun
提出日時 2021-06-07 11:45:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 135 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 137,600 KB
最終ジャッジ日時 2024-11-24 13:54:23
合計ジャッジ時間 62,502 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,088 KB
testcase_01 AC 57 ms
137,600 KB
testcase_02 AC 42 ms
57,216 KB
testcase_03 AC 42 ms
128,384 KB
testcase_04 AC 42 ms
57,088 KB
testcase_05 AC 42 ms
128,000 KB
testcase_06 AC 43 ms
56,960 KB
testcase_07 AC 43 ms
128,896 KB
testcase_08 AC 43 ms
57,216 KB
testcase_09 AC 42 ms
127,872 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 639 ms
80,512 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 #

from math import gcd
lcm=lambda x,y:x//gcd(x,y)*y
mod=998244353
N=int(input())
a=1
for i in range(1,N):
  a=lcm(a,(N-i)*i)
print(a%mod)
0