結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,604 KB
testcase_01 AC 42 ms
53,356 KB
testcase_02 AC 42 ms
52,952 KB
testcase_03 AC 42 ms
51,944 KB
testcase_04 AC 42 ms
51,876 KB
testcase_05 AC 43 ms
52,948 KB
testcase_06 AC 42 ms
53,644 KB
testcase_07 AC 43 ms
52,280 KB
testcase_08 AC 44 ms
51,956 KB
testcase_09 AC 40 ms
53,456 KB
testcase_10 AC 42 ms
53,704 KB
testcase_11 AC 42 ms
53,580 KB
testcase_12 AC 44 ms
51,944 KB
testcase_13 AC 42 ms
52,492 KB
testcase_14 AC 42 ms
52,484 KB
testcase_15 AC 47 ms
53,136 KB
testcase_16 AC 43 ms
51,936 KB
testcase_17 AC 43 ms
53,464 KB
testcase_18 AC 43 ms
52,508 KB
testcase_19 AC 41 ms
52,876 KB
testcase_20 AC 44 ms
53,672 KB
testcase_21 AC 43 ms
52,876 KB
testcase_22 AC 42 ms
53,372 KB
testcase_23 AC 42 ms
53,632 KB
testcase_24 AC 42 ms
52,412 KB
testcase_25 AC 44 ms
52,544 KB
testcase_26 AC 43 ms
53,348 KB
testcase_27 AC 42 ms
52,816 KB
testcase_28 AC 42 ms
52,060 KB
testcase_29 AC 45 ms
52,612 KB
testcase_30 AC 42 ms
53,348 KB
testcase_31 AC 44 ms
53,680 KB
testcase_32 AC 42 ms
53,568 KB
testcase_33 AC 44 ms
53,312 KB
testcase_34 AC 43 ms
52,328 KB
testcase_35 AC 41 ms
52,084 KB
testcase_36 AC 44 ms
52,740 KB
testcase_37 AC 41 ms
53,696 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