結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,164 KB
testcase_01 AC 35 ms
52,188 KB
testcase_02 AC 35 ms
52,872 KB
testcase_03 AC 35 ms
52,756 KB
testcase_04 AC 36 ms
52,032 KB
testcase_05 AC 36 ms
52,612 KB
testcase_06 AC 35 ms
53,096 KB
testcase_07 AC 35 ms
52,316 KB
testcase_08 AC 36 ms
52,380 KB
testcase_09 AC 34 ms
52,752 KB
testcase_10 AC 35 ms
52,312 KB
testcase_11 AC 36 ms
52,656 KB
testcase_12 AC 35 ms
53,284 KB
testcase_13 AC 35 ms
52,672 KB
testcase_14 AC 35 ms
52,604 KB
testcase_15 AC 35 ms
52,256 KB
testcase_16 AC 36 ms
52,616 KB
testcase_17 AC 35 ms
52,420 KB
testcase_18 AC 35 ms
54,024 KB
testcase_19 AC 35 ms
52,196 KB
testcase_20 AC 36 ms
53,596 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