結果

問題 No.2940 Sigma Sigma Div Floor Problem
ユーザー hiro1729hiro1729
提出日時 2024-10-18 21:28:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 6,000 ms
コード長 676 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 137,080 KB
最終ジャッジ日時 2024-10-18 22:04:11
合計ジャッジ時間 143,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
130,208 KB
testcase_01 AC 39 ms
63,136 KB
testcase_02 AC 40 ms
130,148 KB
testcase_03 AC 44 ms
136,220 KB
testcase_04 AC 39 ms
130,920 KB
testcase_05 AC 39 ms
130,388 KB
testcase_06 AC 40 ms
129,588 KB
testcase_07 AC 39 ms
130,316 KB
testcase_08 AC 40 ms
130,400 KB
testcase_09 AC 39 ms
129,624 KB
testcase_10 AC 38 ms
130,352 KB
testcase_11 AC 43 ms
67,024 KB
testcase_12 AC 44 ms
135,324 KB
testcase_13 AC 43 ms
135,828 KB
testcase_14 AC 42 ms
137,080 KB
testcase_15 AC 42 ms
136,068 KB
testcase_16 AC 43 ms
68,420 KB
testcase_17 AC 45 ms
136,628 KB
testcase_18 AC 66 ms
135,580 KB
testcase_19 AC 61 ms
135,204 KB
testcase_20 AC 60 ms
60,636 KB
testcase_21 AC 75 ms
60,324 KB
testcase_22 AC 48 ms
59,408 KB
testcase_23 AC 50 ms
61,332 KB
testcase_24 AC 59 ms
60,916 KB
testcase_25 AC 58 ms
60,148 KB
testcase_26 AC 63 ms
60,008 KB
testcase_27 AC 39 ms
55,536 KB
testcase_28 AC 75 ms
60,344 KB
testcase_29 AC 73 ms
60,044 KB
testcase_30 AC 45 ms
61,392 KB
testcase_31 AC 49 ms
60,984 KB
testcase_32 AC 46 ms
60,876 KB
08_evil_01.txt TLE -
08_evil_02.txt TLE -
08_evil_03.txt TLE -
08_evil_04.txt TLE -
08_evil_05.txt TLE -
08_evil_06.txt TLE -
08_evil_07.txt TLE -
08_evil_08.txt TLE -
08_evil_09.txt TLE -
08_evil_10.txt TLE -
08_evil_11.txt TLE -
08_evil_12.txt TLE -
08_evil_13.txt TLE -
08_evil_14.txt TLE -
08_evil_15.txt TLE -
08_evil_16.txt TLE -
08_evil_17.txt TLE -
08_evil_18.txt TLE -
08_evil_19.txt TLE -
08_evil_20.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import defaultdict as dd
S = input
R = range
P = print
def I(): return int(S())
def M(): return map(int, S().split())
def L(): return list(M())
def O(): return list(map(int, open(0).read().split()))
def yn(b): print("Yes" if b else "No")
biga = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
smaa = "abcdefghijklmnopqrstuvwxyz"
ctoi = lambda c: ord(c) - ord('a')
itoc = lambda i: chr(ord('a') + i)
inf = 10 ** 18
mod = 998244353
def acc(a):
	b = [0]
	for i in a:
		b.append(b[-1] + i)
	return b

n=I()
ans = 0
for i in range(1, n + 1):
	d = (n+1) // i
	ans += (d-1) * d // 2 * i + d * ((n+1) % i)
P(ans%998244353)
0