結果

問題 No.751 Frac #2
ユーザー nebukuro09nebukuro09
提出日時 2018-11-09 21:30:20
言語 Python2
(2.7.18)
結果
AC  
実行時間 24 ms / 1,000 ms
コード長 363 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-11-21 05:36:30
合計ジャッジ時間 1,910 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction as F
N = input()
A = map(int, raw_input().split())
M = input()
B = map(int, raw_input().split())
B.reverse()
X = F(A[0])
for i in xrange(1, N):
    X /= F(A[i])
Y = F(B[0])
for i in xrange(1, M):
    Y = F(B[i]) / Y
Z = X / Y
if Z < 0:
    Z = abs(Z)
    print -Z.numerator, Z.denominator
else:
    print Z.numerator, Z.denominator
0