結果

問題 No.751 Frac #2
ユーザー convexineqconvexineq
提出日時 2021-03-14 17:27:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 279 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 54,076 KB
最終ジャッジ日時 2024-11-06 07:04:32
合計ジャッジ時間 2,825 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,840 KB
testcase_01 AC 38 ms
53,332 KB
testcase_02 AC 38 ms
52,772 KB
testcase_03 AC 37 ms
53,000 KB
testcase_04 AC 38 ms
52,732 KB
testcase_05 AC 39 ms
53,132 KB
testcase_06 AC 39 ms
53,756 KB
testcase_07 AC 38 ms
53,052 KB
testcase_08 AC 39 ms
52,588 KB
testcase_09 AC 42 ms
53,088 KB
testcase_10 AC 38 ms
52,336 KB
testcase_11 AC 38 ms
52,312 KB
testcase_12 AC 38 ms
53,080 KB
testcase_13 AC 39 ms
52,324 KB
testcase_14 AC 38 ms
53,844 KB
testcase_15 AC 39 ms
53,284 KB
testcase_16 AC 38 ms
53,176 KB
testcase_17 AC 38 ms
52,260 KB
testcase_18 AC 39 ms
52,660 KB
testcase_19 AC 38 ms
52,516 KB
testcase_20 AC 38 ms
52,496 KB
testcase_21 AC 38 ms
53,148 KB
testcase_22 AC 38 ms
52,200 KB
testcase_23 AC 37 ms
52,352 KB
testcase_24 AC 39 ms
53,880 KB
testcase_25 AC 38 ms
52,860 KB
testcase_26 AC 38 ms
52,612 KB
testcase_27 AC 39 ms
52,840 KB
testcase_28 AC 38 ms
53,820 KB
testcase_29 AC 38 ms
53,596 KB
testcase_30 AC 38 ms
52,708 KB
testcase_31 AC 39 ms
54,048 KB
testcase_32 AC 39 ms
54,076 KB
testcase_33 AC 38 ms
53,892 KB
testcase_34 AC 37 ms
52,608 KB
testcase_35 AC 39 ms
53,232 KB
testcase_36 AC 38 ms
53,508 KB
testcase_37 AC 39 ms
53,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
m = int(input())
*b, = map(int,input().split())

p = a[0]
q = 1
for i in a[1:]:
    q *= i
for i in b[1::2]:
    p *= i
for i in b[::2]:
    q *= i
from math import gcd
g = gcd(p,q)
p //= g; q //= g
if q < 0: p,q = -p,-q
print(p,q)
0