結果

問題 No.982 Add
ユーザー FromBooskaFromBooska
提出日時 2023-03-02 08:22:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 710 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 60,520 KB
最終ジャッジ日時 2024-09-17 05:20:05
合計ジャッジ時間 1,880 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,436 KB
testcase_01 AC 39 ms
53,308 KB
testcase_02 AC 40 ms
53,868 KB
testcase_03 AC 38 ms
52,548 KB
testcase_04 AC 40 ms
52,124 KB
testcase_05 AC 39 ms
58,844 KB
testcase_06 AC 34 ms
53,460 KB
testcase_07 AC 38 ms
59,472 KB
testcase_08 AC 36 ms
53,116 KB
testcase_09 AC 39 ms
59,948 KB
testcase_10 AC 39 ms
59,476 KB
testcase_11 AC 35 ms
52,528 KB
testcase_12 AC 33 ms
53,136 KB
testcase_13 AC 35 ms
52,776 KB
testcase_14 AC 33 ms
53,352 KB
testcase_15 AC 34 ms
53,104 KB
testcase_16 AC 40 ms
60,520 KB
testcase_17 AC 39 ms
59,524 KB
testcase_18 AC 34 ms
53,140 KB
testcase_19 AC 34 ms
52,948 KB
testcase_20 AC 34 ms
54,256 KB
testcase_21 AC 35 ms
51,948 KB
testcase_22 AC 37 ms
52,648 KB
testcase_23 AC 35 ms
52,748 KB
testcase_24 AC 39 ms
59,840 KB
testcase_25 AC 40 ms
59,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 互いに素でなければ無限にあるので-1
# 互いに素な場合は、LCMまでに表せない数が何個あるかでよいか
# LCM以後表せることは実験で確認した
# 実験するとLCM未満かなり前からすべて表せそうではあるが
# LCMまでに表せる数は1次元dpで計算するか

from math import gcd
A, B = map(int, input().split())
g = gcd(A, B)
#print('g', g)
if g != 1:
    print(-1)
else:
    LCM = A*B//g
    count = [0]*(LCM+1)
    count[A] = 1
    count[B] = 1
    for i in range(LCM+1):
        if count[i] == 1:
            count[min(LCM, i+A)] = 1
            count[min(LCM, i+B)] = 1
    ans = LCM - sum(count)
    #print(LCM, count)
    print(ans)
0