結果

問題 No.2125 Inverse Sum
ユーザー u_kunu_kun
提出日時 2022-11-18 22:11:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 318 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 61,012 KB
最終ジャッジ日時 2024-09-20 02:32:17
合計ジャッジ時間 8,010 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
58,684 KB
testcase_01 AC 208 ms
58,756 KB
testcase_02 AC 205 ms
58,716 KB
testcase_03 AC 205 ms
58,000 KB
testcase_04 AC 208 ms
57,780 KB
testcase_05 WA -
testcase_06 AC 205 ms
58,976 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 203 ms
57,576 KB
testcase_10 AC 203 ms
57,780 KB
testcase_11 AC 203 ms
58,600 KB
testcase_12 AC 204 ms
57,732 KB
testcase_13 AC 208 ms
60,056 KB
testcase_14 AC 209 ms
60,124 KB
testcase_15 AC 207 ms
60,600 KB
testcase_16 AC 210 ms
58,900 KB
testcase_17 AC 207 ms
60,732 KB
testcase_18 AC 204 ms
59,176 KB
testcase_19 AC 215 ms
59,720 KB
testcase_20 AC 214 ms
60,808 KB
testcase_21 AC 209 ms
60,204 KB
testcase_22 AC 215 ms
58,960 KB
testcase_23 AC 204 ms
58,776 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 194 ms
57,516 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 201 ms
58,116 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

P, Q = map(int, input().split())

ans_list = []

for M in range(1, 10 ** 7):
    if Q - P * M != 0:
        if (-M * Q) % (Q - P * M) == 0:
            N = (-M * Q) // (Q - P * M)
            if N > 0:
                ans_list.append((N, M))

ans_list.sort()

print(len(ans_list))
for t in ans_list:
    print(*t)
    
0