結果

問題 No.1260 たくさんの多項式
ユーザー mkawa2mkawa2
提出日時 2021-08-26 16:54:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 996 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-11-18 10:26:01
合計ジャッジ時間 75,136 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
10,752 KB
testcase_01 AC 51 ms
10,752 KB
testcase_02 AC 50 ms
10,880 KB
testcase_03 AC 39 ms
10,752 KB
testcase_04 AC 40 ms
10,880 KB
testcase_05 AC 54 ms
11,008 KB
testcase_06 AC 41 ms
10,752 KB
testcase_07 AC 53 ms
10,752 KB
testcase_08 AC 49 ms
10,880 KB
testcase_09 AC 45 ms
10,752 KB
testcase_10 AC 54 ms
10,880 KB
testcase_11 AC 45 ms
10,880 KB
testcase_12 AC 48 ms
10,752 KB
testcase_13 AC 55 ms
10,752 KB
testcase_14 AC 53 ms
10,752 KB
testcase_15 AC 49 ms
10,880 KB
testcase_16 AC 38 ms
10,752 KB
testcase_17 AC 51 ms
10,880 KB
testcase_18 AC 55 ms
10,752 KB
testcase_19 AC 54 ms
10,880 KB
testcase_20 TLE -
testcase_21 AC 763 ms
10,752 KB
testcase_22 TLE -
testcase_23 AC 1,879 ms
10,880 KB
testcase_24 AC 1,938 ms
10,880 KB
testcase_25 AC 1,538 ms
10,752 KB
testcase_26 AC 1,835 ms
10,752 KB
testcase_27 AC 1,470 ms
10,752 KB
testcase_28 TLE -
testcase_29 AC 1,890 ms
10,752 KB
testcase_30 AC 1,207 ms
10,880 KB
testcase_31 AC 1,899 ms
10,752 KB
testcase_32 AC 1,908 ms
10,880 KB
testcase_33 AC 1,581 ms
10,880 KB
testcase_34 TLE -
testcase_35 AC 1,132 ms
10,752 KB
testcase_36 AC 1,024 ms
10,880 KB
testcase_37 AC 1,951 ms
10,752 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 1,906 ms
10,752 KB
testcase_41 TLE -
testcase_42 AC 1,712 ms
10,752 KB
testcase_43 TLE -
testcase_44 AC 1,617 ms
10,880 KB
testcase_45 AC 1,532 ms
10,880 KB
testcase_46 AC 1,389 ms
10,880 KB
testcase_47 AC 1,730 ms
10,880 KB
testcase_48 AC 382 ms
10,752 KB
testcase_49 AC 1,302 ms
10,880 KB
testcase_50 AC 696 ms
10,752 KB
testcase_51 TLE -
testcase_52 AC 890 ms
10,752 KB
testcase_53 AC 1,158 ms
10,880 KB
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 1,227 ms
10,880 KB
testcase_57 AC 1,832 ms
10,752 KB
testcase_58 AC 1,113 ms
10,752 KB
testcase_59 AC 1,863 ms
10,880 KB
testcase_60 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**9
# md = 998244353
md = 10**9+7

def base(b):
    res = 0
    a = n
    while a:
        a, r = divmod(a, b)
        res += r
    return res

n = II()

ans = 0
last = -1
for b in range(2, n+1):
    last = b
    if b**2 > n: break
    ans += base(b)
    ans %= md

for p in range(n//last, 0, -1):
    l, r = n//(p+1), n//p
    m = r-l
    a = n-p*r
    ans += p*m%md+(2*a+(m-1)*p)*m//2%md
    ans %= md

print(ans)
0