結果

問題 No.442 和と積
ユーザー 双六
提出日時 2019-04-15 19:03:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 114 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-22 08:01:35
合計ジャッジ時間 1,488 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def getlist():
	return list(map(int, input().split()))

A, B = getlist()
GCD = math.gcd(A + B, A * B)
0