結果

問題 No.1918 Simple Math ?
ユーザー とりゐとりゐ
提出日時 2022-04-14 23:38:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 138,496 KB
最終ジャッジ日時 2024-06-29 02:09:19
合計ジャッジ時間 5,269 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
65,792 KB
testcase_01 AC 48 ms
60,032 KB
testcase_02 AC 44 ms
60,160 KB
testcase_03 AC 44 ms
60,416 KB
testcase_04 AC 46 ms
60,160 KB
testcase_05 AC 47 ms
59,776 KB
testcase_06 AC 64 ms
66,176 KB
testcase_07 AC 78 ms
72,320 KB
testcase_08 AC 61 ms
64,128 KB
testcase_09 AC 53 ms
62,080 KB
testcase_10 AC 67 ms
66,944 KB
testcase_11 AC 43 ms
58,240 KB
testcase_12 AC 79 ms
70,528 KB
testcase_13 AC 63 ms
66,304 KB
testcase_14 AC 55 ms
62,976 KB
testcase_15 AC 46 ms
60,416 KB
testcase_16 AC 132 ms
92,800 KB
testcase_17 AC 136 ms
95,616 KB
testcase_18 AC 179 ms
108,800 KB
testcase_19 AC 196 ms
112,384 KB
testcase_20 AC 170 ms
102,784 KB
testcase_21 AC 260 ms
134,400 KB
testcase_22 AC 249 ms
133,760 KB
testcase_23 AC 253 ms
132,608 KB
testcase_24 AC 252 ms
132,992 KB
testcase_25 AC 258 ms
133,504 KB
testcase_26 AC 148 ms
137,388 KB
testcase_27 AC 267 ms
137,344 KB
testcase_28 AC 173 ms
105,600 KB
testcase_29 AC 38 ms
51,968 KB
testcase_30 AC 37 ms
51,584 KB
testcase_31 AC 249 ms
138,496 KB
testcase_32 AC 44 ms
59,520 KB
testcase_33 AC 41 ms
58,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
for _ in range(int(input())):
  a,n=map(int,input().split())
  m=math.isqrt(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=n*m-(m*(2*m*m+3*m-5)//6-c[a]*p-c[q])//a
  print(ans%(10**9+7))
0