結果

問題 No.1918 Simple Math ?
ユーザー とりゐとりゐ
提出日時 2022-04-09 01:04:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 138,368 KB
最終ジャッジ日時 2024-06-29 02:09:13
合計ジャッジ時間 4,791 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
65,792 KB
testcase_01 AC 40 ms
59,904 KB
testcase_02 AC 41 ms
59,648 KB
testcase_03 AC 43 ms
60,544 KB
testcase_04 AC 43 ms
59,904 KB
testcase_05 AC 40 ms
59,904 KB
testcase_06 AC 58 ms
66,432 KB
testcase_07 AC 77 ms
72,320 KB
testcase_08 AC 56 ms
64,256 KB
testcase_09 AC 52 ms
62,080 KB
testcase_10 AC 57 ms
66,560 KB
testcase_11 AC 38 ms
58,880 KB
testcase_12 AC 67 ms
70,016 KB
testcase_13 AC 58 ms
66,432 KB
testcase_14 AC 50 ms
62,848 KB
testcase_15 AC 44 ms
61,184 KB
testcase_16 AC 124 ms
93,440 KB
testcase_17 AC 127 ms
95,872 KB
testcase_18 AC 155 ms
109,056 KB
testcase_19 AC 164 ms
112,256 KB
testcase_20 AC 148 ms
102,528 KB
testcase_21 AC 214 ms
134,272 KB
testcase_22 AC 212 ms
133,552 KB
testcase_23 AC 211 ms
132,992 KB
testcase_24 AC 212 ms
133,120 KB
testcase_25 AC 210 ms
133,376 KB
testcase_26 AC 118 ms
137,216 KB
testcase_27 AC 219 ms
137,472 KB
testcase_28 AC 147 ms
105,088 KB
testcase_29 AC 33 ms
52,352 KB
testcase_30 AC 33 ms
52,096 KB
testcase_31 AC 207 ms
138,368 KB
testcase_32 AC 37 ms
58,496 KB
testcase_33 AC 38 ms
58,880 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=m*(2*m*m+3*m-5)//6-c[a]*p-c[q]
  print((n*m-ans//a)%(10**9+7))
0