結果

問題 No.1529 Constant Lcm
ユーザー mono_0812mono_0812
提出日時 2021-06-04 20:30:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,215 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 64,712 KB
最終ジャッジ日時 2024-11-19 09:16:42
合計ジャッジ時間 62,455 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
17,408 KB
testcase_01 AC 47 ms
59,520 KB
testcase_02 AC 42 ms
17,408 KB
testcase_03 AC 42 ms
38,144 KB
testcase_04 AC 42 ms
17,408 KB
testcase_05 AC 42 ms
54,400 KB
testcase_06 AC 42 ms
17,408 KB
testcase_07 AC 43 ms
43,776 KB
testcase_08 AC 41 ms
17,408 KB
testcase_09 AC 41 ms
18,724 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 467 ms
18,176 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 #

import bisect,collections,copy,heapq,itertools,math,string,sys,queue,time
input = lambda: sys.stdin.readline().rstrip()
def I(): return input()
def IS(): return input().split()
def II(): return int(input())
def IIS(): return map(int,input().split())
def LIIS(): return list(map(int,input().split()))
def debug(*args): print(*args) if len(args)>0 else print(False);return
start_time=time.time()
def nt(): print(time.time()-start_time);return
def chmax(a: list, b: list) -> bool:
     assert len(a) == len(b) == 1, "1要素のlistを指定してください"
     if a[0] < b[0]:
         a[0] = b[0]
         return True
     return False
def chmin(a: list, b: list) -> bool:
    assert len(a) == len(b) == 1, "1要素のlistを指定してください"
    if a[0] > b[0]:
        a[0] = b[0]
        return True
    return False
def combinations_count(n, r):
    return math.factorial(n) // (math.factorial(n - r) * math.factorial(r))
ragen=range
INF=10**10
MOD=998244353
from decimal import Decimal as d
##############################################################################
n=II()
A=[]
for i in range(n-1):
    A.append((i+1)*(n-i-1))
ans=1
for i in range(n-1):
    ans=math.lcm(ans,A[i])
print(ans%MOD)
0