結果

問題 No.1260 たくさんの多項式
ユーザー 37zigen37zigen
提出日時 2020-12-19 06:48:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 463 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-09-21 10:02:59
合計ジャッジ時間 38,949 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,634 ms
16,000 KB
testcase_01 AC 1,634 ms
10,624 KB
testcase_02 AC 1,596 ms
10,624 KB
testcase_03 AC 1,599 ms
10,624 KB
testcase_04 AC 1,643 ms
10,624 KB
testcase_05 AC 1,690 ms
10,752 KB
testcase_06 AC 1,625 ms
10,624 KB
testcase_07 AC 1,677 ms
10,752 KB
testcase_08 AC 1,673 ms
10,624 KB
testcase_09 AC 1,616 ms
10,752 KB
testcase_10 AC 1,643 ms
10,752 KB
testcase_11 AC 1,613 ms
10,624 KB
testcase_12 AC 1,688 ms
10,752 KB
testcase_13 AC 1,658 ms
10,496 KB
testcase_14 AC 1,639 ms
10,624 KB
testcase_15 AC 1,634 ms
10,752 KB
testcase_16 AC 1,670 ms
10,752 KB
testcase_17 AC 1,673 ms
10,752 KB
testcase_18 AC 1,649 ms
10,624 KB
testcase_19 AC 1,681 ms
10,752 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x, b):
    ret = 0
    while x > 0:
        ret += x % b
        x //= b
    return ret


p = 10**9 + 7
N = int(input())
ans = 0

L = min(N + 1, 10**6)
for i in range(2, L):
    ans += f(N, i)
    ans %= p

for a1 in range(1, 10 ** 6):
    r = min(N, N // a1)
    l = max(L - 1, N // (1 + a1))
    if r - l <= 0:
        continue
    ans += (r - l) * a1 % p
    ans %= p
    ans += N * (r - l) - a1 * (r - l) * (r + l + 1) // 2 % p
    ans %= p

print(ans)
0