結果
問題 | No.750 Frac #1 |
ユーザー |
|
提出日時 | 2019-07-28 23:54:48 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 405 bytes |
コンパイル時間 | 1,785 ms |
コンパイル使用メモリ | 197,836 KB |
最終ジャッジ日時 | 2025-01-07 09:51:56 |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int n; cin >> n; pair<double, pair<int, int>> p[n]; for (int i = 0; i < n; i++) { int a, b; cin >> a >> b; p[i] = { (double) a / b, { a, b } }; } sort(p, p+n); reverse(p, p+n); for (auto x : p) cout << x.second.first << ' ' << x.second.second << endl; return 0; }