結果

問題 No.1918 Simple Math ?
ユーザー sotanishysotanishy
提出日時 2022-04-30 00:11:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 614 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 75,952 KB
最終ジャッジ日時 2024-06-29 06:01:41
合計ジャッジ時間 8,669 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
58,752 KB
testcase_01 AC 48 ms
61,952 KB
testcase_02 AC 50 ms
61,412 KB
testcase_03 AC 49 ms
61,312 KB
testcase_04 AC 50 ms
61,696 KB
testcase_05 AC 48 ms
61,184 KB
testcase_06 AC 76 ms
58,752 KB
testcase_07 AC 109 ms
61,440 KB
testcase_08 AC 74 ms
58,624 KB
testcase_09 AC 58 ms
58,624 KB
testcase_10 AC 83 ms
61,312 KB
testcase_11 AC 44 ms
59,392 KB
testcase_12 AC 95 ms
61,440 KB
testcase_13 AC 76 ms
60,288 KB
testcase_14 AC 62 ms
58,624 KB
testcase_15 AC 53 ms
60,288 KB
testcase_16 AC 290 ms
75,648 KB
testcase_17 AC 277 ms
75,952 KB
testcase_18 AC 377 ms
75,904 KB
testcase_19 AC 396 ms
75,904 KB
testcase_20 AC 333 ms
75,512 KB
testcase_21 AC 565 ms
75,776 KB
testcase_22 AC 560 ms
75,904 KB
testcase_23 AC 558 ms
75,076 KB
testcase_24 AC 577 ms
75,648 KB
testcase_25 AC 579 ms
75,540 KB
testcase_26 AC 394 ms
75,520 KB
testcase_27 AC 614 ms
75,308 KB
testcase_28 AC 232 ms
60,032 KB
testcase_29 AC 36 ms
52,096 KB
testcase_30 AC 36 ms
52,480 KB
testcase_31 AC 568 ms
75,432 KB
testcase_32 AC 40 ms
58,880 KB
testcase_33 AC 40 ms
58,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod = 10**9+7
T = int(input())
for _ in range(T):
    a, N = map(int, input().split())
    M = int((a*N)**0.5)
    ans = 0
    if (M+1)**2 <= a*N:
        M += 1
    for r in range(a):
        m = (M-r)//a
        ans += a*m*(m+1)*(2*m+1)//6+m*(m+1)*r + (r**2-1)//a*(m+1)
    ans = (N*M - ans - 1) % mod
    print(ans)
0