結果
問題 | No.1464 Number Conversion |
ユーザー | dyktr_06 |
提出日時 | 2022-12-10 16:52:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,305 bytes |
コンパイル時間 | 1,829 ms |
コンパイル使用メモリ | 199,412 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 23:47:36 |
合計ジャッジ時間 | 2,812 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 1 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 1 ms
5,248 KB |
testcase_24 | AC | 1 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
ソースコード
#define PROBLEM "https://yukicoder.me/problems/no/1464" #include <bits/stdc++.h> using namespace std; struct fraction{ long long p, q; // long long or __int128_t fraction(long long P = 0, long long Q = 1): p(P), q(Q){ normalize(); } void normalize(){ long long g = __gcd(p, q); p /= g, q /= g; if(q < 0) p *= -1, q *= -1; } inline bool operator<(const fraction &other) const { return p * other.q < other.p * q; } inline bool operator<=(const fraction &other) const { return p * other.q <= other.p * q; } inline fraction operator+(const fraction &other) const { return fraction(p * other.q + q * other.p, q * other.q); } inline fraction operator-(const fraction &other) const { return fraction(p * other.q - q * other.p, q * other.q); } inline fraction operator*(const fraction &other) const { return fraction(p * other.p, q * other.q); } inline fraction operator/(const fraction &other) const { return fraction(p * other.q, q * other.p); } friend inline ostream& operator<<(ostream& os, const fraction& x) noexcept { return os << x.p << "/" << x.q; } }; int main(){ long double x; cin >> x; long long n = x * 100000000 + 0.1; fraction f = fraction(n, 100000000); cout << f << endl; }