結果

問題 No.1260 たくさんの多項式
ユーザー tonyu0tonyu0
提出日時 2020-10-17 02:08:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 367 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-21 01:41:36
合計ジャッジ時間 40,514 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
10,624 KB
testcase_01 AC 44 ms
10,752 KB
testcase_02 AC 44 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 47 ms
10,752 KB
testcase_06 AC 36 ms
10,496 KB
testcase_07 AC 48 ms
10,496 KB
testcase_08 AC 50 ms
10,624 KB
testcase_09 AC 40 ms
10,624 KB
testcase_10 AC 48 ms
10,752 KB
testcase_11 AC 41 ms
10,624 KB
testcase_12 AC 44 ms
10,496 KB
testcase_13 AC 48 ms
10,624 KB
testcase_14 AC 50 ms
10,752 KB
testcase_15 AC 45 ms
10,624 KB
testcase_16 AC 35 ms
10,496 KB
testcase_17 AC 45 ms
10,496 KB
testcase_18 AC 48 ms
10,496 KB
testcase_19 AC 46 ms
10,496 KB
testcase_20 TLE -
testcase_21 AC 724 ms
10,496 KB
testcase_22 TLE -
testcase_23 AC 1,835 ms
10,624 KB
testcase_24 AC 1,848 ms
10,752 KB
testcase_25 AC 1,470 ms
10,624 KB
testcase_26 AC 1,774 ms
10,624 KB
testcase_27 AC 1,422 ms
10,752 KB
testcase_28 TLE -
testcase_29 AC 1,932 ms
10,752 KB
testcase_30 AC 1,285 ms
10,624 KB
testcase_31 AC 1,801 ms
10,624 KB
testcase_32 AC 1,846 ms
10,752 KB
testcase_33 AC 1,507 ms
10,496 KB
testcase_34 TLE -
testcase_35 AC 1,093 ms
10,496 KB
testcase_36 AC 978 ms
10,624 KB
testcase_37 AC 1,870 ms
10,624 KB
testcase_38 AC 1,969 ms
10,752 KB
testcase_39 TLE -
testcase_40 AC 1,952 ms
10,752 KB
testcase_41 TLE -
testcase_42 AC 1,673 ms
10,624 KB
testcase_43 TLE -
testcase_44 AC 1,526 ms
10,624 KB
testcase_45 AC 1,453 ms
10,752 KB
testcase_46 AC 1,400 ms
10,752 KB
testcase_47 AC 1,626 ms
10,752 KB
testcase_48 AC 359 ms
10,752 KB
testcase_49 AC 1,269 ms
10,752 KB
testcase_50 AC 677 ms
10,752 KB
testcase_51 TLE -
testcase_52 AC 842 ms
10,624 KB
testcase_53 AC 1,143 ms
10,752 KB
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 1,208 ms
10,624 KB
testcase_57 AC 1,725 ms
10,624 KB
testcase_58 AC 1,055 ms
10,624 KB
testcase_59 AC 1,910 ms
10,752 KB
testcase_60 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = 10 ** 9 + 7

ans = 0
j = 2
for i in range(2, int(n ** .5) + 1):
    now = n
    while now > 0:
        ans += now % i
        now //= i
    ans += now
    ans %= mod
    j = i + 1
    
while j <= n:
    m = n // j
    r = n // m
    ans += n * (r - j + 1) - (j - 1 + r - 1) * (r - j + 1) // 2 * m % mod
    ans %= mod
    j = r + 1
print(ans)

0