結果

問題 No.750 Frac #1
ユーザー treeone
提出日時 2018-11-09 21:23:18
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 773 bytes
コンパイル時間 2,447 ms
コンパイル使用メモリ 205,284 KB
最終ジャッジ日時 2025-01-06 15:56:37
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < n; i++)
#define repr(i, a, b) for(int i = a; i >= b; i--)
#define int long long
#define all(a) a.begin(), a.end()
#define chmax(x, y) x = max(x, y)
#define chmin(x, y) x = min(x, y)
using namespace std;
typedef pair<int, int> P;
typedef pair<double, int> Pdi;
const int mod = 1000000007;
const int INF = 1e15;

signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    vector<P> a(n);
    vector<Pdi> b;
    rep(i, 0, n){
        cin >> a[i].first >> a[i].second;
        b.push_back({(double)a[i].first / (double)a[i].second, i});
    }
    sort(b.rbegin(), b.rend());
    rep(i, 0, n){
        cout << a[b[i].second].first << ' ' << a[b[i].second].second << endl;
    }
}
0