結果

問題 No.751 Frac #2
コンテスト
ユーザー M
提出日時 2025-01-14 11:43:45
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 97 ms / 1,000 ms
コード長 366 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 614 ms
コンパイル使用メモリ 20,956 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2026-06-13 15:15:17
合計ジャッジ時間 5,538 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

def gcd(a, b):
    if b == 0:
        return a
    else:
        return gcd(b, a%b)
    
n = int(input())
a = list(map(int, input().split()))
m = int(input())
b = list(map(int, input().split()))

a1 = a[0]
a2 = 1

for i in a[1:]:
    a2 *= i

for i in range(m):
    if i % 2 == 0:
        a2 *= b[i]
    else:
        a1 *= b[i]

g = gcd(a1, a2)

print(a1//g, a2//g)
0