結果

問題 No.1918 Simple Math ?
ユーザー tassei903tassei903
提出日時 2022-04-29 23:49:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 609 ms / 2,000 ms
コード長 883 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 63,104 KB
最終ジャッジ日時 2024-06-29 05:38:37
合計ジャッジ時間 9,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
59,136 KB
testcase_01 AC 56 ms
63,104 KB
testcase_02 AC 57 ms
61,952 KB
testcase_03 AC 59 ms
62,720 KB
testcase_04 AC 58 ms
61,952 KB
testcase_05 AC 58 ms
62,080 KB
testcase_06 AC 104 ms
59,392 KB
testcase_07 AC 140 ms
62,080 KB
testcase_08 AC 87 ms
58,880 KB
testcase_09 AC 70 ms
60,544 KB
testcase_10 AC 105 ms
60,672 KB
testcase_11 AC 50 ms
58,752 KB
testcase_12 AC 129 ms
62,720 KB
testcase_13 AC 102 ms
62,336 KB
testcase_14 AC 80 ms
60,544 KB
testcase_15 AC 61 ms
61,312 KB
testcase_16 AC 295 ms
62,336 KB
testcase_17 AC 312 ms
62,720 KB
testcase_18 AC 402 ms
61,952 KB
testcase_19 AC 429 ms
61,952 KB
testcase_20 AC 360 ms
62,592 KB
testcase_21 AC 582 ms
62,080 KB
testcase_22 AC 575 ms
62,720 KB
testcase_23 AC 574 ms
62,336 KB
testcase_24 AC 572 ms
61,952 KB
testcase_25 AC 574 ms
62,336 KB
testcase_26 AC 609 ms
62,464 KB
testcase_27 AC 605 ms
62,976 KB
testcase_28 AC 378 ms
62,720 KB
testcase_29 AC 38 ms
51,584 KB
testcase_30 AC 39 ms
51,840 KB
testcase_31 AC 604 ms
63,104 KB
testcase_32 AC 50 ms
60,544 KB
testcase_33 AC 49 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9+7

def sqrt(x):
    ok = 0
    ng = 10**9+1
    while ng - ok > 1:
        d = (ok+ng)>>1
        if d * d <= x:
            ok = d
        else:
            ng = d
    return ok
def f(a, n):
    ans = 0
    for k in range(1,sqrt(a*n)+1):
        ans += n+1-(k*k+a-1)//a
        #print(n+1-(k*k+a-1)//a)
        ans %= mod
    return ans
def g(a, n):
    N = sqrt(a*n)
    ans = (n+1)*N
    for b in range(a):
        r = (N+b)//a
        l = b//a
        #print(l, r)
        ans -= (b*b+a-1)//a * (r - l)
        ans %= mod
        ans -= a * (r*(r+1)*(2*r+1)//6)
        ans %= mod
        ans += a * (l*(l+1)*(2*l+1)//6)
        ans %= mod
        ans += b*(r*(r+1))
        ans %= mod
        ans -= b*(l*(l+1))
        ans %= mod

    return ans

for _ in range(int(input())):
    a,n = map(int,input().split())
    #ans1 = f(a, n)
    ans = g(a, n)
    print(ans)
0