結果
問題 | No.750 Frac #1 |
ユーザー | tonegawa |
提出日時 | 2020-08-10 08:18:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,234 bytes |
コンパイル時間 | 1,285 ms |
コンパイル使用メモリ | 100,912 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-06 11:18:00 |
合計ジャッジ時間 | 2,455 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | AC | 2 ms
6,820 KB |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
6,820 KB |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 3 ms
6,816 KB |
testcase_29 | AC | 2 ms
6,820 KB |
testcase_30 | AC | 2 ms
6,816 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
#include <iostream> #include <string> #include <vector> #include <queue> #include <deque> #include <algorithm> #include <set> #include <map> #include <bitset> #include <cmath> #include <functional> #include <iomanip> #define vll vector<ll> #define vvvl vector<vvl> #define vvl vector<vector<ll>> #define VV(a, b, c, d) vector<vector<d>>(a, vector<d>(b, c)) #define VVV(a, b, c, d) vector<vvl>(a, vvl(b, vll (c, d))); #define re(c, b) for(ll c=0;c<b;c++) #define all(obj) (obj).begin(), (obj).end() typedef long long int ll; typedef long double ld; using namespace std; ll gcd(ll a, ll b){ if(b<a) swap(a, b); ll r = a % b; if(r==0) return b; while(r!=0) r = a % b, a = b, b = r; return a; } struct fraction{ ll a, b; fraction(){}; fraction(ll A, ll B){// A/B if(A==0) B = 1; else{ if(B<0) A*=-1, B*=-1; ll g = gcd(abs(A), abs(B)); A/=g, B/=g; } a = A, b = B; } bool operator == (fraction r) const{ return (this->a==r.a && this->b==r.b); } bool operator < (fraction r) const { __int128_t left = (__int128_t)this->a*(__int128_t)r.b; __int128_t right = (__int128_t)r.a*(__int128_t)this->b; return left < right; } bool operator <= (fraction r) const{ __int128_t left = (__int128_t)this->a*(__int128_t)r.b; __int128_t right = (__int128_t)r.a*(__int128_t)this->b; std::cout << (ll)left << " " << (ll)right << '\n'; return left <= right; } bool operator > (fraction r) const{ __int128_t left = (__int128_t)this->a*(__int128_t)r.b; __int128_t right = (__int128_t)r.a*(__int128_t)this->b; return left > right; } bool operator >= (fraction r) const{ __int128_t left = (__int128_t)this->a*(__int128_t)r.b; __int128_t right = (__int128_t)r.a*(__int128_t)this->b; return left >= right; } }; void print(fraction f){ printf("(%lld / %lld)", f.a, f.b); } void println(fraction f){ printf("(%lld / %lld)\n", f.a, f.b); } int main(int argc, char const *argv[]) { ll n;std::cin >> n; vector<fraction> v(n); for(int i=0;i<n;i++) { ll a, b;std::cin >> a >> b; v[i] = fraction(a, b); } sort(all(v)); reverse(all(v)); for(int i=0;i<n;i++){ std::cout << v[i].a << " " << v[i].b << '\n'; } }