結果

問題 No.751 Frac #2
ユーザー htkbhtkb
提出日時 2018-12-01 16:09:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 529 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-26 23:59:56
合計ジャッジ時間 2,280 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

input()
numerator = list(map(int, input().split()))
input()
denominator = list(map(int, input().split()))

while len(numerator) > 2:
    numerator[2] *= numerator[1]
    numerator.pop(1)
while len(denominator) > 2:
    denominator[-3] *= denominator[-1]
    denominator.pop()

numerator, denominator = numerator[0]*denominator[1], numerator[1]*denominator[0]
if denominator < 0:
    numerator *= -1
    denominator *= -1

gcd, _ = denominator, numerator
while _ > 0:
    gcd, _ = _, gcd%_

print(numerator//gcd, denominator//gcd)
0