結果

問題 No.751 Frac #2
ユーザー はむ吉🐹はむ吉🐹
提出日時 2018-11-09 21:48:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 638 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 10,896 KB
実行使用メモリ 9,900 KB
最終ジャッジ日時 2023-08-13 11:25:31
合計ジャッジ時間 2,590 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
9,640 KB
testcase_01 AC 31 ms
9,760 KB
testcase_02 AC 29 ms
9,760 KB
testcase_03 AC 29 ms
9,628 KB
testcase_04 RE -
testcase_05 AC 29 ms
9,788 KB
testcase_06 AC 30 ms
9,692 KB
testcase_07 RE -
testcase_08 AC 29 ms
9,744 KB
testcase_09 RE -
testcase_10 AC 28 ms
9,780 KB
testcase_11 AC 29 ms
9,852 KB
testcase_12 AC 28 ms
9,716 KB
testcase_13 AC 29 ms
9,836 KB
testcase_14 AC 29 ms
9,692 KB
testcase_15 AC 29 ms
9,596 KB
testcase_16 AC 29 ms
9,640 KB
testcase_17 AC 29 ms
9,892 KB
testcase_18 AC 29 ms
9,556 KB
testcase_19 RE -
testcase_20 AC 29 ms
9,560 KB
testcase_21 AC 29 ms
9,664 KB
testcase_22 AC 29 ms
9,796 KB
testcase_23 AC 29 ms
9,764 KB
testcase_24 AC 29 ms
9,656 KB
testcase_25 AC 29 ms
9,688 KB
testcase_26 AC 30 ms
9,832 KB
testcase_27 AC 29 ms
9,836 KB
testcase_28 AC 29 ms
9,560 KB
testcase_29 AC 30 ms
9,560 KB
testcase_30 AC 29 ms
9,636 KB
testcase_31 AC 29 ms
9,656 KB
testcase_32 AC 29 ms
9,632 KB
testcase_33 AC 29 ms
9,744 KB
testcase_34 AC 29 ms
9,564 KB
testcase_35 AC 30 ms
9,652 KB
testcase_36 AC 30 ms
9,856 KB
testcase_37 AC 29 ms
9,900 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])
    g_lower = functools.reduce(lambda f1, f2: f1 * f2, ys[1::2])
    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