結果

問題 No.442 和と積
ユーザー 学ぶマン
提出日時 2025-03-15 11:28:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 77 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 53,864 KB
最終ジャッジ日時 2025-03-15 11:28:19
合計ジャッジ時間 2,577 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
A, B = map(int, input().split())
ans = math.gcd(A, B)
print(ans)
0