結果

問題 No.1918 Simple Math ?
ユーザー kozykozy
提出日時 2022-04-30 00:59:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 803 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 149,864 KB
最終ジャッジ日時 2024-06-29 06:59:11
合計ジャッジ時間 23,501 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
69,376 KB
testcase_01 AC 73 ms
73,600 KB
testcase_02 AC 63 ms
68,224 KB
testcase_03 AC 82 ms
76,416 KB
testcase_04 AC 70 ms
72,192 KB
testcase_05 AC 70 ms
73,216 KB
testcase_06 AC 95 ms
63,488 KB
testcase_07 AC 99 ms
73,472 KB
testcase_08 AC 64 ms
65,280 KB
testcase_09 AC 80 ms
68,864 KB
testcase_10 AC 195 ms
72,192 KB
testcase_11 AC 64 ms
65,280 KB
testcase_12 AC 200 ms
77,824 KB
testcase_13 AC 217 ms
77,440 KB
testcase_14 AC 58 ms
66,304 KB
testcase_15 AC 75 ms
68,480 KB
testcase_16 WA -
testcase_17 AC 918 ms
107,520 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1,818 ms
149,408 KB
testcase_28 AC 36 ms
52,096 KB
testcase_29 AC 37 ms
52,096 KB
testcase_30 AC 38 ms
52,352 KB
testcase_31 WA -
testcase_32 AC 56 ms
68,352 KB
testcase_33 AC 58 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(n):
  a=int(n**0.5)
  return a
T=int(input())
mod=10**9+7
for _ in range(T):
  a,N=map(int,input().split())
  ans=0
  for i in range(1,a):
    if i>N:
      break
    ans+=f(a*i)
    ans%=mod
  if a-1>=N:
    print(ans)
    continue
  K=[0]*a
  s1=0
  for i in range(a,4*a):
    s=f(i*a)
    K[s-a]+=1
    s1+=s
  x=f(N//a)
  #x>=1
  s1%=mod
  s2=((3*a-1)*a//2)%mod
  s3=3*a
  kosu=a
  if x>=2:
    ans+=s1*(x-1)%mod
    ans+=(a*kosu%mod*((x-2)*(x-1)*(2*x-3))//3)%mod
    ans+=(((x-2)*(x-1))//2)*a%mod*s3%mod
    ans+=(x-2)*(x-1)*s2%mod
    ans%=mod
  #(x**2)*a~N
  kk=N-((x**2)*a)+1
  for i in range(a):
    if kk-(K[i]+2*(x-1))<=0:
      ans+=kk*(i+a*x)
      ans%=mod
      break
    else:
      kk-=(K[i]+2*(x-1))
      kk%=mod
      ans+=(i+a*x)*(K[i]+2*(x-1))%mod
      ans%=mod
  print(ans)
0