結果
問題 | No.750 Frac #1 |
ユーザー |
|
提出日時 | 2019-05-19 10:21:51 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 418 bytes |
コンパイル時間 | 459 ms |
コンパイル使用メモリ | 59,548 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-17 06:26:34 |
合計ジャッジ時間 | 1,372 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
#include <algorithm> #include <iostream> using namespace std; struct bunsu{ int ue; int sita; }; bool cmp(const bunsu &a,const bunsu &b){ return a.ue/(a.sita*1.0)>b.ue/(b.sita*1.0); } int main(){ int n; cin>>n; struct bunsu* bun=new struct bunsu[n]; for (int x=0;x<n;x++){ cin>>bun[x].ue>>bun[x].sita; } sort(bun,bun+n,cmp); for(int x=0;x<n;x++){ cout<<bun[x].ue<<" "<<bun[x].sita<<endl; } return 0; }