結果

問題 No.1918 Simple Math ?
ユーザー googol_S0googol_S0
提出日時 2022-04-29 21:47:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 665 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 137,344 KB
最終ジャッジ日時 2024-06-29 03:09:35
合計ジャッジ時間 9,512 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
66,048 KB
testcase_01 AC 46 ms
59,776 KB
testcase_02 AC 46 ms
59,904 KB
testcase_03 AC 45 ms
59,392 KB
testcase_04 AC 47 ms
59,904 KB
testcase_05 AC 48 ms
59,648 KB
testcase_06 AC 108 ms
67,072 KB
testcase_07 AC 121 ms
71,680 KB
testcase_08 AC 87 ms
64,384 KB
testcase_09 AC 63 ms
61,184 KB
testcase_10 AC 89 ms
66,944 KB
testcase_11 AC 47 ms
58,880 KB
testcase_12 AC 112 ms
70,272 KB
testcase_13 AC 87 ms
66,304 KB
testcase_14 AC 68 ms
63,232 KB
testcase_15 AC 53 ms
61,276 KB
testcase_16 AC 259 ms
92,928 KB
testcase_17 AC 271 ms
95,488 KB
testcase_18 AC 395 ms
108,544 KB
testcase_19 AC 370 ms
112,256 KB
testcase_20 AC 342 ms
102,784 KB
testcase_21 AC 589 ms
134,272 KB
testcase_22 AC 654 ms
133,120 KB
testcase_23 AC 655 ms
132,736 KB
testcase_24 AC 606 ms
132,608 KB
testcase_25 AC 557 ms
133,632 KB
testcase_26 AC 622 ms
137,344 KB
testcase_27 AC 665 ms
137,344 KB
testcase_28 AC 340 ms
105,344 KB
testcase_29 AC 38 ms
51,840 KB
testcase_30 AC 38 ms
52,224 KB
testcase_31 AC 532 ms
137,216 KB
testcase_32 AC 45 ms
58,240 KB
testcase_33 AC 44 ms
58,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
def solve():
  A,N=map(int,input().split())
  C=[0]*A
  M=A*N
  R=0
  for i in range(31,-1,-1):
    v=R+(1<<i)
    if v*v<=M:
      R=v
  V=0
  for k in range(1,A+1):
    v=(R+A-k)//A
    C[(k*k-1)%A]+=v
  for i in range(A):
    C[i]%=mod
    V=(V+i*C[i])%mod
  W=R*(R+1)*(2*R+1)//6
  W=(W-R)%mod
  W=(W-V)%mod
  W=W*pow(A,mod-2,mod)%mod
  #print(R,N,W)
  print((R*N-W)%mod)

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