結果

問題 No.2125 Inverse Sum
ユーザー u_kunu_kun
提出日時 2022-11-18 22:43:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 357 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 61,312 KB
最終ジャッジ日時 2024-09-20 03:13:14
合計ジャッジ時間 57,235 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,574 ms
58,992 KB
testcase_01 AC 1,758 ms
58,788 KB
testcase_02 AC 36 ms
52,576 KB
testcase_03 AC 1,772 ms
58,588 KB
testcase_04 AC 1,771 ms
58,584 KB
testcase_05 WA -
testcase_06 AC 1,753 ms
58,988 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1,712 ms
58,632 KB
testcase_10 AC 1,726 ms
58,032 KB
testcase_11 AC 1,752 ms
59,852 KB
testcase_12 AC 1,751 ms
58,324 KB
testcase_13 AC 1,792 ms
59,716 KB
testcase_14 AC 1,804 ms
59,660 KB
testcase_15 AC 1,800 ms
59,592 KB
testcase_16 AC 1,785 ms
60,116 KB
testcase_17 AC 1,793 ms
60,236 KB
testcase_18 AC 1,778 ms
58,720 KB
testcase_19 AC 1,793 ms
59,676 KB
testcase_20 AC 1,873 ms
59,672 KB
testcase_21 AC 1,803 ms
59,872 KB
testcase_22 AC 1,792 ms
59,676 KB
testcase_23 AC 1,756 ms
58,184 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 36 ms
52,036 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1,756 ms
58,056 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if P > Q * 2:
    print(0)
    exit()

ans_list = []

for M in range(1, 10 ** 8):
    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