結果

問題 No.2066 Simple Math !
ユーザー lilictakalilictaka
提出日時 2022-09-16 10:47:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 689 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 77,492 KB
最終ジャッジ日時 2024-06-01 03:36:38
合計ジャッジ時間 22,663 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,768 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 827 ms
76,776 KB
testcase_05 AC 829 ms
76,776 KB
testcase_06 AC 833 ms
77,052 KB
testcase_07 AC 832 ms
76,716 KB
testcase_08 AC 819 ms
76,624 KB
testcase_09 AC 827 ms
77,008 KB
testcase_10 AC 828 ms
76,876 KB
testcase_11 AC 825 ms
76,620 KB
testcase_12 AC 822 ms
76,468 KB
testcase_13 AC 833 ms
77,056 KB
testcase_14 AC 724 ms
76,400 KB
testcase_15 AC 722 ms
76,500 KB
testcase_16 AC 733 ms
76,652 KB
testcase_17 AC 725 ms
76,668 KB
testcase_18 AC 726 ms
76,588 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 864 ms
77,304 KB
testcase_25 AC 858 ms
77,492 KB
testcase_26 AC 864 ms
77,092 KB
testcase_27 AC 906 ms
76,960 KB
testcase_28 AC 856 ms
77,152 KB
testcase_29 AC 196 ms
76,620 KB
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
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
T = int(input())
for _ in range(T):
    P,Q,K=map(int,input().split())
    ok = 10 ** 18
    ng = 0
    def isok(z):
        r = z//P
        if floor_sum(r+1,Q,P,Q+z-P*r)-1>= K:
            return True
        else:
            return False
    while ok -ng > 1:
        z = (ok+ng)>>1
        if isok(z):
            ok = z
        else:
            ng = z
    print(ok)
    
0