結果

問題 No.2940 Sigma Sigma Div Floor Problem
ユーザー ニックネームニックネーム
提出日時 2024-10-18 22:27:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 6,000 ms
コード長 137 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 75,616 KB
最終ジャッジ日時 2024-10-18 22:51:23
合計ジャッジ時間 10,232 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,904 KB
testcase_01 AC 34 ms
52,272 KB
testcase_02 AC 36 ms
53,292 KB
testcase_03 AC 44 ms
60,352 KB
testcase_04 AC 36 ms
52,628 KB
testcase_05 AC 36 ms
52,944 KB
testcase_06 AC 38 ms
52,360 KB
testcase_07 AC 36 ms
52,208 KB
testcase_08 AC 36 ms
52,216 KB
testcase_09 AC 35 ms
53,280 KB
testcase_10 AC 37 ms
52,732 KB
testcase_11 AC 41 ms
60,188 KB
testcase_12 AC 40 ms
59,828 KB
testcase_13 AC 39 ms
59,992 KB
testcase_14 AC 41 ms
60,524 KB
testcase_15 AC 41 ms
60,548 KB
testcase_16 AC 39 ms
59,096 KB
testcase_17 AC 49 ms
63,604 KB
testcase_18 AC 108 ms
75,616 KB
testcase_19 AC 89 ms
75,380 KB
testcase_20 AC 88 ms
75,492 KB
testcase_21 AC 125 ms
75,496 KB
testcase_22 AC 52 ms
68,348 KB
testcase_23 AC 57 ms
71,344 KB
testcase_24 AC 85 ms
75,240 KB
testcase_25 AC 81 ms
75,616 KB
testcase_26 AC 96 ms
75,440 KB
testcase_27 AC 34 ms
52,636 KB
testcase_28 AC 127 ms
75,372 KB
testcase_29 AC 129 ms
75,452 KB
testcase_30 AC 48 ms
65,420 KB
testcase_31 AC 57 ms
71,860 KB
testcase_32 AC 45 ms
63,352 KB
08_evil_01.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input()); s = 0
for i in range(1,n+1):
    for j in range(1,n+1):
        if i*j>n: break
        s += n-i*j+1
print(s%998244353)
0