結果

問題 No.442 和と積
ユーザー ogapyogapy
提出日時 2022-07-05 23:39:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 276 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-05-09 19:51:47
合計ジャッジ時間 1,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,492 KB
testcase_01 AC 31 ms
53,220 KB
testcase_02 AC 31 ms
52,216 KB
testcase_03 AC 33 ms
52,952 KB
testcase_04 AC 31 ms
53,416 KB
testcase_05 AC 33 ms
52,704 KB
testcase_06 AC 34 ms
52,468 KB
testcase_07 AC 35 ms
54,088 KB
testcase_08 AC 35 ms
53,304 KB
testcase_09 AC 35 ms
52,776 KB
testcase_10 AC 37 ms
52,140 KB
testcase_11 AC 37 ms
52,808 KB
testcase_12 AC 40 ms
53,116 KB
testcase_13 AC 35 ms
53,084 KB
testcase_14 AC 36 ms
52,864 KB
testcase_15 AC 36 ms
52,140 KB
testcase_16 AC 37 ms
51,880 KB
testcase_17 AC 36 ms
53,296 KB
testcase_18 AC 36 ms
52,460 KB
testcase_19 AC 36 ms
52,204 KB
testcase_20 AC 35 ms
52,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def GCD(a, b):
  if b == 0:
    return a
  else:
    return GCD(b, a % b)
def solve(A, B):
  g = GCD(A, B)
  a, b = A//g, B//g
  G = 1
  G *= GCD(a+b, a)
  G *= GCD(a+b, b)
  G *= GCD(a+b, g)
  G *= g
  return G

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

ans = solve(A, B)
print(ans)
0