結果

問題 No.751 Frac #2
ユーザー yansi819yansi819
提出日時 2024-05-14 08:35:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 413 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-05-14 08:35:19
合計ジャッジ時間 3,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,048 KB
testcase_01 AC 36 ms
52,600 KB
testcase_02 AC 37 ms
52,336 KB
testcase_03 AC 38 ms
52,128 KB
testcase_04 AC 36 ms
52,800 KB
testcase_05 AC 36 ms
53,480 KB
testcase_06 AC 37 ms
53,416 KB
testcase_07 AC 37 ms
52,256 KB
testcase_08 AC 38 ms
53,224 KB
testcase_09 AC 38 ms
52,444 KB
testcase_10 AC 36 ms
52,872 KB
testcase_11 AC 35 ms
53,552 KB
testcase_12 AC 38 ms
52,952 KB
testcase_13 AC 38 ms
53,080 KB
testcase_14 AC 38 ms
53,444 KB
testcase_15 AC 36 ms
52,312 KB
testcase_16 AC 40 ms
53,076 KB
testcase_17 AC 37 ms
53,292 KB
testcase_18 AC 37 ms
53,208 KB
testcase_19 AC 38 ms
52,128 KB
testcase_20 AC 37 ms
52,240 KB
testcase_21 AC 36 ms
52,680 KB
testcase_22 AC 37 ms
52,632 KB
testcase_23 AC 37 ms
52,080 KB
testcase_24 AC 37 ms
53,456 KB
testcase_25 AC 36 ms
53,064 KB
testcase_26 AC 36 ms
54,104 KB
testcase_27 AC 37 ms
52,944 KB
testcase_28 AC 37 ms
54,232 KB
testcase_29 AC 36 ms
52,516 KB
testcase_30 AC 37 ms
53,628 KB
testcase_31 AC 37 ms
53,388 KB
testcase_32 AC 38 ms
53,016 KB
testcase_33 AC 37 ms
53,692 KB
testcase_34 AC 37 ms
52,812 KB
testcase_35 AC 37 ms
52,196 KB
testcase_36 AC 36 ms
52,340 KB
testcase_37 AC 37 ms
52,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
n1 = int(input())
A = list(map(int, input().split()))
n2 = int(input())
B = list(map(int, input().split()))
X1 = A[0]
Y1 = 1
for i in range(1, n1):
    Y1 *= A[i]
X2 = 1
for i in range(1, n2, 2):
    X2 *= B[i]
Y2 = 1
for i in range(0, n2, 2):
    Y2 *= B[i]
X3 = X1 * X2
Y3 = Y1 * Y2
g = gcd(X3, Y3)
ans1 = X3 // g
ans2 = Y3 // g
if ans2 < 0:
    ans2 *= -1
    ans1 *= -1
print(ans1, ans2)
0