結果

問題 No.982 Add
ユーザー raven7959raven7959
提出日時 2021-09-16 07:56:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 890 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 61,124 KB
最終ジャッジ日時 2024-06-29 13:35:47
合計ジャッジ時間 2,284 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,268 KB
testcase_01 AC 32 ms
53,012 KB
testcase_02 AC 32 ms
52,272 KB
testcase_03 AC 32 ms
53,284 KB
testcase_04 AC 32 ms
52,368 KB
testcase_05 AC 38 ms
58,732 KB
testcase_06 AC 35 ms
58,616 KB
testcase_07 AC 36 ms
58,608 KB
testcase_08 AC 32 ms
52,824 KB
testcase_09 AC 37 ms
59,324 KB
testcase_10 AC 37 ms
61,124 KB
testcase_11 AC 32 ms
52,880 KB
testcase_12 AC 32 ms
52,528 KB
testcase_13 AC 32 ms
52,072 KB
testcase_14 AC 31 ms
52,620 KB
testcase_15 AC 32 ms
53,420 KB
testcase_16 AC 37 ms
59,832 KB
testcase_17 AC 35 ms
59,756 KB
testcase_18 AC 32 ms
52,612 KB
testcase_19 AC 31 ms
52,428 KB
testcase_20 AC 32 ms
52,200 KB
testcase_21 AC 31 ms
53,408 KB
testcase_22 AC 32 ms
51,872 KB
testcase_23 AC 33 ms
52,236 KB
testcase_24 AC 37 ms
59,848 KB
testcase_25 AC 37 ms
59,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
a,b=map(int,input().split())
g=gcd(a,b)
if g!=1:
  print(-1)
else:
  S=set()
  for i in range(b+1):
    for j in range(a+1):
      if a*i+b*j<a*b:
        S.add(a*i+b*j)
  print(a*b-len(S))
0