結果

問題 No.2066 Simple Math !
ユーザー lilictakalilictaka
提出日時 2022-09-16 10:47:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 689 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 77,368 KB
最終ジャッジ日時 2024-12-21 06:09:26
合計ジャッジ時間 25,291 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,824 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 923 ms
76,848 KB
testcase_05 AC 942 ms
76,784 KB
testcase_06 AC 954 ms
76,528 KB
testcase_07 AC 917 ms
76,412 KB
testcase_08 AC 968 ms
76,600 KB
testcase_09 AC 930 ms
76,744 KB
testcase_10 AC 916 ms
76,792 KB
testcase_11 AC 929 ms
76,964 KB
testcase_12 AC 911 ms
76,388 KB
testcase_13 AC 927 ms
76,556 KB
testcase_14 AC 802 ms
76,644 KB
testcase_15 AC 799 ms
76,796 KB
testcase_16 AC 803 ms
76,400 KB
testcase_17 AC 792 ms
76,320 KB
testcase_18 AC 789 ms
76,656 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 936 ms
77,036 KB
testcase_25 AC 955 ms
77,368 KB
testcase_26 AC 955 ms
76,924 KB
testcase_27 AC 984 ms
76,980 KB
testcase_28 AC 949 ms
76,896 KB
testcase_29 AC 217 ms
76,376 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