結果

問題 No.751 Frac #2
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-18 19:40:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 390 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 54,608 KB
最終ジャッジ日時 2024-05-02 19:29:09
合計ジャッジ時間 3,011 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 WA -
testcase_03 AC 38 ms
51,840 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 WA -
testcase_11 AC 38 ms
51,968 KB
testcase_12 AC 39 ms
52,336 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 WA -
testcase_15 AC 39 ms
52,352 KB
testcase_16 AC 41 ms
52,352 KB
testcase_17 WA -
testcase_18 AC 39 ms
52,096 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 39 ms
52,352 KB
testcase_22 WA -
testcase_23 AC 38 ms
51,840 KB
testcase_24 AC 38 ms
52,096 KB
testcase_25 AC 38 ms
51,840 KB
testcase_26 WA -
testcase_27 AC 38 ms
52,352 KB
testcase_28 WA -
testcase_29 AC 38 ms
52,352 KB
testcase_30 WA -
testcase_31 AC 39 ms
52,096 KB
testcase_32 AC 39 ms
52,096 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
n_1=int(input())
a=list(map(int,input().split()))
n_2=int(input())
b=list(map(int,input().split()))
a_up=a_down=b_up=b_down=1
for i in range(n_1):
    if i==0:
        a_up*=a[i]
    else:
        a_down*=a[i]
for i in range(n_2):
    if i%2==0:
        b_up*=b[i]
    else:
        b_down*=b[i]
ans1=a_up*b_down
ans2=a_down*b_up
d=gcd(ans1,ans2)
print(ans1//d,ans2//d)
0