結果

問題 No.2066 Simple Math !
ユーザー とりゐとりゐ
提出日時 2022-09-02 13:52:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 815 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 77,996 KB
最終ジャッジ日時 2024-11-15 19:10:23
合計ジャッジ時間 19,307 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,540 KB
testcase_01 AC 160 ms
76,580 KB
testcase_02 AC 201 ms
76,528 KB
testcase_03 AC 117 ms
77,524 KB
testcase_04 AC 801 ms
77,060 KB
testcase_05 AC 801 ms
77,332 KB
testcase_06 AC 796 ms
77,072 KB
testcase_07 AC 803 ms
77,124 KB
testcase_08 AC 806 ms
77,200 KB
testcase_09 AC 808 ms
77,312 KB
testcase_10 AC 813 ms
77,012 KB
testcase_11 AC 814 ms
76,956 KB
testcase_12 AC 815 ms
77,124 KB
testcase_13 AC 814 ms
77,096 KB
testcase_14 AC 749 ms
76,744 KB
testcase_15 AC 750 ms
76,924 KB
testcase_16 AC 756 ms
77,132 KB
testcase_17 AC 750 ms
77,268 KB
testcase_18 AC 760 ms
76,784 KB
testcase_19 AC 371 ms
77,024 KB
testcase_20 AC 368 ms
77,108 KB
testcase_21 AC 375 ms
77,488 KB
testcase_22 AC 376 ms
77,376 KB
testcase_23 AC 376 ms
77,216 KB
testcase_24 AC 583 ms
77,568 KB
testcase_25 AC 566 ms
77,996 KB
testcase_26 AC 572 ms
77,996 KB
testcase_27 AC 575 ms
77,576 KB
testcase_28 AC 569 ms
77,908 KB
testcase_29 AC 251 ms
76,800 KB
testcase_30 AC 129 ms
77,500 KB
testcase_31 AC 234 ms
76,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def floor_sum(n,m,a,b):
  ans=0
  while True:
    if a>=m:
      ans+=(n-1)*n*(a//m)//2
      a%=m
    if b>=m:
      ans+=n*(b//m)
      b%=m
    y_max=(a*n+b)//m
    x_max=(y_max*m-b)
    if y_max==0:
      return ans
    ans+=(n-(x_max+a-1)//a)*y_max
    n,m,a,b=y_max,a,m,(a-x_max%a)%a

import math
def solve():
  p,q,k=map(int,input().split())
  g=math.gcd(p,q)
  p//=g
  q//=g
  ng,ok=0,max(p,q)*k
  while ok-ng>1:
    mid=(ok+ng)//2
    n=min(q,mid//p+1)
    if floor_sum(n,q,p,q+mid-p*(n-1))>k:
      ok=mid
    else:
      ng=mid
  print(ok*g)

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