結果

問題 No.982 Add
ユーザー syunsukesyunsuke
提出日時 2020-09-16 20:15:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 61,092 KB
最終ジャッジ日時 2024-06-22 03:30:50
合計ジャッジ時間 2,341 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,204 KB
testcase_01 AC 39 ms
53,672 KB
testcase_02 AC 39 ms
52,984 KB
testcase_03 AC 38 ms
53,764 KB
testcase_04 AC 38 ms
53,976 KB
testcase_05 AC 46 ms
61,092 KB
testcase_06 AC 42 ms
59,336 KB
testcase_07 AC 46 ms
60,400 KB
testcase_08 AC 39 ms
53,384 KB
testcase_09 AC 45 ms
60,568 KB
testcase_10 AC 46 ms
60,624 KB
testcase_11 AC 38 ms
53,332 KB
testcase_12 AC 38 ms
52,720 KB
testcase_13 AC 38 ms
52,748 KB
testcase_14 AC 38 ms
54,152 KB
testcase_15 AC 39 ms
53,328 KB
testcase_16 AC 46 ms
60,376 KB
testcase_17 AC 43 ms
59,584 KB
testcase_18 AC 37 ms
53,136 KB
testcase_19 AC 37 ms
52,272 KB
testcase_20 AC 38 ms
52,680 KB
testcase_21 AC 38 ms
53,504 KB
testcase_22 AC 38 ms
53,820 KB
testcase_23 AC 37 ms
53,408 KB
testcase_24 AC 44 ms
60,420 KB
testcase_25 AC 44 ms
60,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B=map(int,input().split())

def gcd(A,B):
    if B>A:
        A,B=B,A
    while A%B!=0:
        A,B=B,A%B
    return B

if gcd(A,B)!=1:
    print(-1)
    exit()

L=[0 for i in range(A*B+1)]
L[0]=1
for i in range(B+1):
    for j in range(A+1):
        if A*i+B*j<=A*B:
            L[A*i+B*j]=1
print(len(L)-sum(L))
0