結果

問題 No.751 Frac #2
ユーザー はむ吉🐹はむ吉🐹
提出日時 2018-11-09 21:51:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 31 ms / 1,000 ms
コード長 644 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 10,784 KB
実行使用メモリ 9,872 KB
最終ジャッジ日時 2023-08-13 11:26:28
合計ジャッジ時間 2,844 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
9,708 KB
testcase_01 AC 30 ms
9,692 KB
testcase_02 AC 30 ms
9,568 KB
testcase_03 AC 30 ms
9,684 KB
testcase_04 AC 30 ms
9,564 KB
testcase_05 AC 30 ms
9,832 KB
testcase_06 AC 29 ms
9,872 KB
testcase_07 AC 30 ms
9,772 KB
testcase_08 AC 30 ms
9,872 KB
testcase_09 AC 29 ms
9,684 KB
testcase_10 AC 29 ms
9,564 KB
testcase_11 AC 29 ms
9,688 KB
testcase_12 AC 29 ms
9,676 KB
testcase_13 AC 30 ms
9,840 KB
testcase_14 AC 29 ms
9,700 KB
testcase_15 AC 30 ms
9,688 KB
testcase_16 AC 29 ms
9,676 KB
testcase_17 AC 29 ms
9,688 KB
testcase_18 AC 29 ms
9,588 KB
testcase_19 AC 29 ms
9,704 KB
testcase_20 AC 31 ms
9,872 KB
testcase_21 AC 29 ms
9,668 KB
testcase_22 AC 29 ms
9,684 KB
testcase_23 AC 29 ms
9,688 KB
testcase_24 AC 30 ms
9,808 KB
testcase_25 AC 29 ms
9,796 KB
testcase_26 AC 30 ms
9,704 KB
testcase_27 AC 30 ms
9,692 KB
testcase_28 AC 30 ms
9,780 KB
testcase_29 AC 30 ms
9,856 KB
testcase_30 AC 29 ms
9,560 KB
testcase_31 AC 29 ms
9,868 KB
testcase_32 AC 29 ms
9,732 KB
testcase_33 AC 29 ms
9,852 KB
testcase_34 AC 29 ms
9,592 KB
testcase_35 AC 29 ms
9,676 KB
testcase_36 AC 29 ms
9,700 KB
testcase_37 AC 30 ms
9,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import fractions
import functools


def main():
    _ = input()
    xs = [fractions.Fraction(int(x), 1) for x in input().split()]
    f = functools.reduce(lambda f1, f2: f1 / f2, xs)
    # print(f)
    _ = input()
    ys = [fractions.Fraction(int(x), 1) for x in input().split()]
    g_upper = functools.reduce(lambda f1, f2: f1 * f2, ys[::2], 1)
    g_lower = functools.reduce(lambda f1, f2: f1 * f2, ys[1::2], 1)
    g = g_upper / g_lower
    # print(g)
    res = f / g
    if res.denominator >= 0:
        print(res.numerator, res.denominator)
    else:
        print(-res.numerator, -res.denominator)


if __name__ == '__main__':
    main()
0