結果
問題 |
No.750 Frac #1
|
ユーザー |
![]() |
提出日時 | 2019-06-07 13:47:06 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 653 bytes |
コンパイル時間 | 1,506 ms |
コンパイル使用メモリ | 168,984 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-05 02:30:08 |
合計ジャッジ時間 | 2,823 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 19 WA * 11 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n, 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; }