結果

問題 No.2940 Sigma Sigma Div Floor Problem
ユーザー noriaokinoriaoki
提出日時 2024-10-18 22:53:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 6,000 ms
コード長 181 bytes
コンパイル時間 485 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 59,956 KB
最終ジャッジ日時 2024-10-18 22:56:31
合計ジャッジ時間 3,118 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,552 KB
testcase_01 AC 35 ms
52,956 KB
testcase_02 AC 42 ms
52,580 KB
testcase_03 AC 39 ms
58,284 KB
testcase_04 AC 35 ms
52,344 KB
testcase_05 AC 34 ms
51,976 KB
testcase_06 AC 35 ms
53,424 KB
testcase_07 AC 36 ms
52,616 KB
testcase_08 AC 35 ms
52,576 KB
testcase_09 AC 35 ms
52,500 KB
testcase_10 AC 36 ms
52,208 KB
testcase_11 AC 40 ms
59,036 KB
testcase_12 AC 56 ms
58,936 KB
testcase_13 AC 40 ms
58,220 KB
testcase_14 AC 39 ms
58,648 KB
testcase_15 AC 39 ms
59,372 KB
testcase_16 AC 60 ms
58,512 KB
testcase_17 AC 42 ms
59,668 KB
testcase_18 AC 68 ms
58,248 KB
testcase_19 AC 63 ms
58,428 KB
testcase_20 AC 63 ms
58,772 KB
testcase_21 AC 76 ms
59,472 KB
testcase_22 AC 60 ms
59,140 KB
testcase_23 AC 48 ms
59,288 KB
testcase_24 AC 57 ms
58,904 KB
testcase_25 AC 58 ms
59,100 KB
testcase_26 AC 62 ms
58,884 KB
testcase_27 AC 36 ms
53,544 KB
testcase_28 AC 81 ms
58,108 KB
testcase_29 AC 77 ms
58,232 KB
testcase_30 AC 43 ms
59,752 KB
testcase_31 AC 47 ms
58,636 KB
testcase_32 AC 42 ms
59,956 KB
08_evil_01.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n>2*10**6: exit()
mod = 998244353
ans = 0
for i in range(1, n+1):
    k = (n-i+1)//i
    ans += k*(k+1)//2*i
    ans += (n-i+1)%i*(k+1)
    ans %= mod
print(ans)
0