結果

問題 No.982 Add
ユーザー stngstng
提出日時 2022-08-15 20:21:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 61,868 KB
最終ジャッジ日時 2024-10-02 08:43:26
合計ジャッジ時間 2,154 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,144 KB
testcase_01 AC 38 ms
53,820 KB
testcase_02 AC 37 ms
53,340 KB
testcase_03 AC 36 ms
53,732 KB
testcase_04 AC 37 ms
52,332 KB
testcase_05 AC 45 ms
60,796 KB
testcase_06 AC 41 ms
59,952 KB
testcase_07 AC 43 ms
60,368 KB
testcase_08 AC 37 ms
53,972 KB
testcase_09 AC 44 ms
59,932 KB
testcase_10 AC 44 ms
60,980 KB
testcase_11 AC 37 ms
52,416 KB
testcase_12 AC 36 ms
52,388 KB
testcase_13 AC 37 ms
52,404 KB
testcase_14 AC 36 ms
53,060 KB
testcase_15 AC 37 ms
53,612 KB
testcase_16 AC 44 ms
61,868 KB
testcase_17 AC 42 ms
59,140 KB
testcase_18 AC 37 ms
52,340 KB
testcase_19 AC 38 ms
52,372 KB
testcase_20 AC 39 ms
52,444 KB
testcase_21 AC 37 ms
52,584 KB
testcase_22 AC 38 ms
53,484 KB
testcase_23 AC 37 ms
53,496 KB
testcase_24 AC 45 ms
60,124 KB
testcase_25 AC 45 ms
61,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a,b = map(int,input().split())
gd = math.gcd(a,b)
if gd != 1:
    print(-1)
    exit()

li = [0]*(a*b+1)
for i in range(a+1):
    for j in range(b+1):
        tmp = b*i+a*j
        if tmp <= a*b:
            li[tmp] = 1
        
#print(li)
ans = 0
for i in range(a*b+1):
    if li[i] == 0:
        ans += 1
print(ans)
0