結果

問題 No.750 Frac #1
ユーザー SINEgomiKASUmap
提出日時 2019-06-07 13:51:40
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 662 bytes
コンパイル時間 1,618 ms
コンパイル使用メモリ 170,304 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-05 02:40:39
合計ジャッジ時間 2,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int n;
  double temp;

  cin >> n;

  vector<double> a(n);
  vector<double> b(n);
  vector<double> ans(n);

  for (int i = 0; i < n; i++) {
    cin >> a[i] >> b[i];
    ans[i] = a[i] / b[i];
  }

  for (int i = 0; i < n; i++) {
    for (int j = i; j < n; j++) {
      if (ans[j] > ans[i]) {
        temp = ans[j];
        ans[j] = ans[i];
        ans[i] = temp;

        temp = a[j];
        a[j] = a[i];
        a[i] = temp;

        temp = b[j];
        b[j] = b[i];
        b[i] = temp;
      }
    }
  }

  for (int i = 0; i < n; i++) {
     cout << a[i] << " " << b[i] <<endl;
  }

  return 0;
}
0