結果

問題 No.1260 たくさんの多項式
ユーザー mkawa2mkawa2
提出日時 2021-08-26 16:57:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 76,252 KB
最終ジャッジ日時 2024-11-18 10:27:29
合計ジャッジ時間 8,863 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
65,828 KB
testcase_01 AC 48 ms
67,864 KB
testcase_02 AC 44 ms
67,124 KB
testcase_03 AC 45 ms
65,152 KB
testcase_04 AC 45 ms
64,320 KB
testcase_05 AC 45 ms
67,796 KB
testcase_06 AC 44 ms
64,320 KB
testcase_07 AC 45 ms
68,636 KB
testcase_08 AC 48 ms
66,652 KB
testcase_09 AC 45 ms
66,576 KB
testcase_10 AC 45 ms
68,120 KB
testcase_11 AC 43 ms
66,152 KB
testcase_12 AC 46 ms
66,500 KB
testcase_13 AC 45 ms
68,840 KB
testcase_14 AC 46 ms
67,812 KB
testcase_15 AC 45 ms
66,520 KB
testcase_16 AC 42 ms
64,448 KB
testcase_17 AC 45 ms
67,812 KB
testcase_18 AC 46 ms
68,368 KB
testcase_19 AC 45 ms
67,352 KB
testcase_20 AC 198 ms
75,596 KB
testcase_21 AC 90 ms
75,736 KB
testcase_22 AC 180 ms
75,932 KB
testcase_23 AC 158 ms
75,964 KB
testcase_24 AC 160 ms
75,772 KB
testcase_25 AC 143 ms
75,644 KB
testcase_26 AC 160 ms
75,632 KB
testcase_27 AC 137 ms
75,532 KB
testcase_28 AC 200 ms
75,796 KB
testcase_29 AC 160 ms
75,916 KB
testcase_30 AC 119 ms
75,640 KB
testcase_31 AC 157 ms
75,604 KB
testcase_32 AC 163 ms
75,656 KB
testcase_33 AC 140 ms
75,920 KB
testcase_34 AC 191 ms
75,460 KB
testcase_35 AC 114 ms
75,748 KB
testcase_36 AC 107 ms
75,600 KB
testcase_37 AC 161 ms
75,604 KB
testcase_38 AC 171 ms
75,760 KB
testcase_39 AC 197 ms
75,764 KB
testcase_40 AC 159 ms
75,440 KB
testcase_41 AC 186 ms
75,676 KB
testcase_42 AC 160 ms
75,720 KB
testcase_43 AC 189 ms
75,788 KB
testcase_44 AC 143 ms
76,252 KB
testcase_45 AC 137 ms
75,740 KB
testcase_46 AC 135 ms
75,728 KB
testcase_47 AC 152 ms
75,456 KB
testcase_48 AC 69 ms
75,940 KB
testcase_49 AC 125 ms
75,524 KB
testcase_50 AC 91 ms
75,692 KB
testcase_51 AC 193 ms
75,724 KB
testcase_52 AC 98 ms
75,944 KB
testcase_53 AC 116 ms
75,660 KB
testcase_54 AC 193 ms
75,896 KB
testcase_55 AC 204 ms
75,736 KB
testcase_56 AC 122 ms
75,940 KB
testcase_57 AC 156 ms
75,464 KB
testcase_58 AC 117 ms
75,724 KB
testcase_59 AC 187 ms
75,944 KB
testcase_60 AC 207 ms
75,804 KB
権限があれば一括ダウンロードができます

ソースコード

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