結果

問題 No.751 Frac #2
ユーザー toshiki_fulltoshiki_full
提出日時 2019-01-08 01:46:00
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 1,352 bytes
コンパイル時間 2,522 ms
コンパイル使用メモリ 147,144 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-15 16:35:35
合計ジャッジ時間 2,622 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
long long gcd (long long a, long long b) {
  if (a < b) {
    swap(a, b);
  }
  if (b == 0) {
    return 0;
  }
  while (b) {
    a %= b;
    swap(a, b);
  }
  if (a < 0) {
    a *= -1;
  }
  return a;
}
pair<long long, long long> reduce (pair<long long, long long> a, pair<long long, long long> b) {
  long long num = a.first * b.second;
  long long den = a.second * b.first;
  long long g = gcd(num, den);
  num /= g;
  den /= g;
  if (den < 0) {
    num *= -1;
    den *= -1;
  }
  return {num, den};
}
int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int m;
  cin >> m;
  vector<int> a(m);
  for (int i = 0; i < m; i++) {
    int tmp;
    cin >> tmp;
    a[i] = tmp;
  }
  pair<long long, long long> frc;
  if (m ==1) {
    frc = {a[0], 1};
  } else {
    frc = {a[0], a[1]};
  }
  for (long long i = 2; i < m; i++) {
    frc = reduce(frc, {a[i], 1});
  }
  int n;
  cin >> n;
  vector<int> b(n);
  for (int i = 0; i < n; i++) {
    int tmp;
    cin >> tmp;
    b[i] = tmp;
  }
  pair<long long, long long> grc;
  if (n == 1) {
    grc = {b[n - 1], 1};
  } else {
    grc = {b[n - 2], b[n - 1]};
  }
  for (int i = n - 3; i >= 0; i--) {
    grc = reduce({b[i], 1}, grc);
  }
  pair<long long, long long> ans = reduce(frc, grc);
  cout << ans.first << ' ' << ans.second << '\n';
  return 0;
}
0