結果

問題 No.751 Frac #2
ユーザー toshiki_fulltoshiki_full
提出日時 2019-01-08 01:44:06
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,238 bytes
コンパイル時間 1,339 ms
コンパイル使用メモリ 161,296 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-03 03:37:15
合計ジャッジ時間 2,421 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int gcd (int a, int 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<int, int> reduce (pair<int, int> a, pair<int, int> b) {
  int num = a.first * b.second;
  int den = a.second * b.first;
  int 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<int, int> frc;
  if (m ==1) {
    frc = {a[0], 1};
  } else {
    frc = {a[0], a[1]};
  }
  for (int 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<int, int> 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<int, int> ans = reduce(frc, grc);
  cout << ans.first << ' ' << ans.second << '\n';
  return 0;
}
0