結果

問題 No.1918 Simple Math ?
ユーザー とりゐとりゐ
提出日時 2022-04-08 22:42:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 135,936 KB
最終ジャッジ日時 2024-06-29 02:09:07
合計ジャッジ時間 5,098 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
65,024 KB
testcase_01 AC 47 ms
57,600 KB
testcase_02 AC 42 ms
57,344 KB
testcase_03 AC 41 ms
57,216 KB
testcase_04 AC 47 ms
57,856 KB
testcase_05 AC 45 ms
58,112 KB
testcase_06 AC 64 ms
65,152 KB
testcase_07 AC 78 ms
69,504 KB
testcase_08 AC 60 ms
63,616 KB
testcase_09 AC 52 ms
60,800 KB
testcase_10 AC 62 ms
65,664 KB
testcase_11 AC 44 ms
57,728 KB
testcase_12 AC 71 ms
68,352 KB
testcase_13 AC 65 ms
64,384 KB
testcase_14 AC 54 ms
61,952 KB
testcase_15 AC 46 ms
59,008 KB
testcase_16 AC 137 ms
90,880 KB
testcase_17 AC 141 ms
93,312 KB
testcase_18 AC 175 ms
106,752 KB
testcase_19 AC 182 ms
110,336 KB
testcase_20 AC 156 ms
100,992 KB
testcase_21 AC 249 ms
132,096 KB
testcase_22 AC 250 ms
131,712 KB
testcase_23 AC 249 ms
130,688 KB
testcase_24 AC 244 ms
130,944 KB
testcase_25 AC 244 ms
131,712 KB
testcase_26 AC 261 ms
135,680 KB
testcase_27 AC 258 ms
135,936 KB
testcase_28 AC 166 ms
103,680 KB
testcase_29 AC 36 ms
51,840 KB
testcase_30 AC 35 ms
51,968 KB
testcase_31 AC 258 ms
135,936 KB
testcase_32 AC 38 ms
57,344 KB
testcase_33 AC 37 ms
57,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def floor_sqrt(n):
  ng,ok=n+1,-1
  while ng-ok>1:
    mid=(ok+ng)//2
    if mid*mid<=n:
      ok=mid
    else:
      ng=mid
  return ok

def solve():
  a,n=map(int,input().split())
  m=floor_sqrt(a*n)
  c=[0]*(a+1)
  for i in range(1,a+1):
    c[i]=c[i-1]+(i*i-1)%a
  
  p,q=m//a,m%a
  ans=m*(2*m*m+3*m-5)//6-c[a]*p-c[q]
  print((n*m-ans//a)%(10**9+7))

for _ in range(int(input())):
  solve()
0