結果

問題 No.2940 Sigma Sigma Div Floor Problem
ユーザー shimonohnishishimonohnishi
提出日時 2024-11-04 11:57:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 315 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 83,120 KB
最終ジャッジ日時 2024-11-04 11:58:09
合計ジャッジ時間 10,083 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,876 KB
testcase_01 AC 37 ms
52,404 KB
testcase_02 AC 38 ms
53,568 KB
testcase_03 AC 80 ms
76,024 KB
testcase_04 AC 37 ms
53,200 KB
testcase_05 AC 38 ms
52,068 KB
testcase_06 AC 36 ms
53,728 KB
testcase_07 AC 37 ms
52,944 KB
testcase_08 AC 37 ms
52,396 KB
testcase_09 AC 38 ms
52,876 KB
testcase_10 AC 37 ms
52,988 KB
testcase_11 AC 56 ms
67,220 KB
testcase_12 AC 64 ms
73,324 KB
testcase_13 AC 56 ms
67,200 KB
testcase_14 AC 52 ms
64,108 KB
testcase_15 AC 62 ms
71,672 KB
testcase_16 AC 53 ms
65,776 KB
testcase_17 AC 377 ms
76,388 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
08_evil_01.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
Q = int(input())

if Q > 1.2 * 10**8:
    print(0)
    exit()

ans = 0
MOD = 998244353
for N in range(1, Q + 1):
    sqrtN = math.isqrt(N)
    c = 0
    for i in range(1, sqrtN + 1):
        c += N // i
        c %= MOD
    sqrtN %= MOD
    ans += 2 * c - (sqrtN * sqrtN) % MOD
    ans %= MOD
print(ans)
0