結果

問題 No.1936 Rational Approximation
ユーザー ygd.ygd.
提出日時 2022-05-13 22:13:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 1,266 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 53,884 KB
最終ジャッジ日時 2024-07-22 02:08:46
合計ジャッジ時間 1,425 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,804 KB
testcase_01 AC 36 ms
52,768 KB
testcase_02 AC 37 ms
53,136 KB
testcase_03 AC 36 ms
52,308 KB
testcase_04 AC 35 ms
53,080 KB
testcase_05 AC 35 ms
52,488 KB
testcase_06 AC 37 ms
52,280 KB
testcase_07 AC 37 ms
52,712 KB
testcase_08 AC 36 ms
52,524 KB
testcase_09 AC 35 ms
52,740 KB
testcase_10 AC 37 ms
53,884 KB
testcase_11 AC 36 ms
52,656 KB
testcase_12 AC 36 ms
52,700 KB
testcase_13 AC 36 ms
52,820 KB
testcase_14 AC 34 ms
52,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

def calc(X):
    n = len(X)
    for i in reversed(range(n-1)):
        if i == n-2:
            a = X[i]
            b = X[i+1]
            c = 1
        else:
            a = X[i]
        nc = b
        nb = a*b + c
        b,c = nb,nc
    #print(b,c)
    return b,c

def main():
    P,Q = map(int,input().split())
    A = [0]
    while True:
        #print(P,Q)
        v = Q // P
        if P == 1:
            #print("last",A)
            if Q != 1:
                A.append(Q-1)
            A.append(1)
            break
        A.append(v)
        q = Q; p = P
        P = q - p*v
        Q = p
    #print(A)
    P0,Q0 = calc(A[:-1])
    P1,Q1 = calc(A[:-2])
    ans = P0 + Q0 + P1 + Q1
    print(ans)
                
if __name__ == '__main__':
    main()

0