結果

問題 No.1260 たくさんの多項式
ユーザー tanon710tanon710
提出日時 2020-10-17 01:30:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 352 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 75,392 KB
最終ジャッジ日時 2024-07-21 01:37:46
合計ジャッジ時間 8,492 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,648 KB
testcase_01 WA -
testcase_02 AC 47 ms
59,776 KB
testcase_03 AC 47 ms
60,672 KB
testcase_04 AC 46 ms
60,416 KB
testcase_05 AC 45 ms
59,776 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 47 ms
60,544 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 45 ms
59,776 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 44 ms
59,776 KB
testcase_16 AC 44 ms
59,904 KB
testcase_17 AC 47 ms
60,288 KB
testcase_18 WA -
testcase_19 AC 45 ms
59,776 KB
testcase_20 AC 190 ms
75,136 KB
testcase_21 WA -
testcase_22 AC 167 ms
73,088 KB
testcase_23 WA -
testcase_24 AC 147 ms
71,168 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 186 ms
75,392 KB
testcase_29 AC 146 ms
70,656 KB
testcase_30 AC 108 ms
66,688 KB
testcase_31 AC 150 ms
71,040 KB
testcase_32 AC 147 ms
70,784 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 98 ms
66,176 KB
testcase_37 WA -
testcase_38 AC 159 ms
72,448 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 173 ms
73,680 KB
testcase_42 AC 140 ms
69,888 KB
testcase_43 AC 187 ms
75,264 KB
testcase_44 AC 130 ms
69,120 KB
testcase_45 WA -
testcase_46 AC 121 ms
67,840 KB
testcase_47 AC 139 ms
69,504 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 82 ms
63,616 KB
testcase_51 WA -
testcase_52 AC 91 ms
64,384 KB
testcase_53 WA -
testcase_54 AC 187 ms
75,136 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 105 ms
66,176 KB
testcase_59 AC 147 ms
70,528 KB
testcase_60 AC 191 ms
75,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7

n=int(input())
if n==2:
    print(1)
    exit()
if n==3:
    print(3)
    exit()
ans=0
for i in range(2,int(n**0.5)+1):
    tn=n
    while tn!=0:
        ans+=tn%i
        tn//=i
    ans%=mod
for i in range(1,int(n**0.5)):
    l=n//(i+1)+1
    r=n//i
    ans+=i*(r-l+1)
    ans+=i*(((r-l)*(r-l+1))//2)+(n%r)*(r-l+1)
    ans%=mod
print(ans)
0