結果

問題 No.751 Frac #2
ユーザー flippergoflippergo
提出日時 2024-10-23 19:56:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 377 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-10-23 19:56:12
合計ジャッジ時間 3,457 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,808 KB
testcase_01 AC 36 ms
53,588 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 AC 36 ms
52,316 KB
testcase_04 AC 35 ms
52,684 KB
testcase_05 AC 38 ms
52,824 KB
testcase_06 AC 37 ms
52,924 KB
testcase_07 AC 37 ms
52,752 KB
testcase_08 AC 46 ms
54,216 KB
testcase_09 AC 36 ms
52,616 KB
testcase_10 AC 37 ms
53,532 KB
testcase_11 AC 38 ms
52,192 KB
testcase_12 AC 36 ms
52,492 KB
testcase_13 AC 36 ms
53,684 KB
testcase_14 AC 36 ms
52,196 KB
testcase_15 AC 36 ms
52,544 KB
testcase_16 AC 37 ms
52,644 KB
testcase_17 AC 37 ms
53,360 KB
testcase_18 AC 36 ms
52,744 KB
testcase_19 AC 36 ms
52,864 KB
testcase_20 AC 36 ms
52,196 KB
testcase_21 AC 36 ms
54,024 KB
testcase_22 AC 37 ms
52,188 KB
testcase_23 AC 37 ms
52,892 KB
testcase_24 AC 36 ms
52,932 KB
testcase_25 AC 36 ms
53,108 KB
testcase_26 AC 36 ms
53,532 KB
testcase_27 AC 36 ms
53,840 KB
testcase_28 AC 36 ms
53,788 KB
testcase_29 AC 37 ms
52,672 KB
testcase_30 AC 38 ms
52,400 KB
testcase_31 AC 39 ms
52,664 KB
testcase_32 AC 36 ms
52,124 KB
testcase_33 AC 36 ms
52,156 KB
testcase_34 AC 35 ms
52,552 KB
testcase_35 AC 36 ms
52,500 KB
testcase_36 AC 36 ms
53,280 KB
testcase_37 AC 36 ms
52,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a,b):
    if b==0:return a
    return gcd(b,a%b)
N1 = int(input())
A = list(map(int,input().split()))
N2 = int(input())
B = list(map(int,input().split()))
a = A[0]
for i in range(1,N2,2):
    a = a*B[i]
b = B[0]
for i in range(1,N1):
    b = b*A[i]
for i in range(2,N2,2):
    b = b*B[i]
d = gcd(a,b)
if a*b>0:
    print(a//d,b//d)
else:
    print(-abs(a//d),abs(b//d))
0