結果

問題 No.2125 Inverse Sum
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-12-29 13:35:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 946 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 61,352 KB
最終ジャッジ日時 2024-12-29 13:35:42
合計ジャッジ時間 3,238 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,948 KB
testcase_01 AC 41 ms
53,084 KB
testcase_02 AC 40 ms
53,444 KB
testcase_03 AC 41 ms
52,548 KB
testcase_04 AC 41 ms
53,164 KB
testcase_05 WA -
testcase_06 AC 46 ms
58,268 KB
testcase_07 WA -
testcase_08 AC 45 ms
59,012 KB
testcase_09 AC 43 ms
53,160 KB
testcase_10 AC 46 ms
58,944 KB
testcase_11 AC 42 ms
53,416 KB
testcase_12 AC 41 ms
52,312 KB
testcase_13 AC 47 ms
60,168 KB
testcase_14 AC 45 ms
59,856 KB
testcase_15 WA -
testcase_16 AC 48 ms
59,120 KB
testcase_17 AC 46 ms
60,700 KB
testcase_18 WA -
testcase_19 AC 47 ms
61,352 KB
testcase_20 AC 46 ms
59,788 KB
testcase_21 AC 47 ms
59,128 KB
testcase_22 WA -
testcase_23 AC 45 ms
58,312 KB
testcase_24 WA -
testcase_25 AC 47 ms
58,212 KB
testcase_26 AC 40 ms
53,044 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 42 ms
52,872 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2125

import math

def calc_gcd(A, B):
    """
    正の整数A, Bの最大公約数を計算する
    """
    a = max(A, B)
    b = min(A, B)
    while a % b > 0:
        c = a % b
        a = b
        b = c
    return b

def main():
    P, Q = map(int, input().split())

    # P, Qを互いに素な整数として解く
    gcd = calc_gcd(P, Q)
    P //= gcd
    Q //= gcd

    # Qの約数分解
    sqrt_q = int(math.sqrt(Q))
    answers = []
    for n in range(1, 2 * sqrt_q + 1):    
        l = Q - n * P
        r = -Q * n
        if abs(l) > 0 and abs(r) % abs(l) == 0:
            if r * l > 0:
                m = abs(r) // abs(l)
                if m >= 1:
                    answers.append((n, m))
                    answers.append((m, n))
    answers = set(answers)
        
    print(len(answers))
    for n, m in answers:
        print(n, m)









if __name__ == "__main__":
    main()
0