結果
問題 | No.1464 Number Conversion |
ユーザー |
![]() |
提出日時 | 2021-04-02 21:58:49 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,353 bytes |
コンパイル時間 | 1,992 ms |
コンパイル使用メモリ | 195,348 KB |
最終ジャッジ日時 | 2025-01-20 09:13:48 |
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 29 |
ソースコード
#include <bits/stdc++.h> using namespace std; struct iofast_t { iofast_t() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); } } iofast; struct uns_t {} uns; template <typename Element, typename Head, typename ...Args> auto vec(Element init, Head arg, Args ...args) { if constexpr (sizeof...(Args) == 0) return std::vector(arg, init); else return std::vector(arg, vec(init, args...)); } template <typename Element, typename Head, typename ...Args> auto vec(uns_t, Head arg, Args ...args) { return vec(Element(), arg, args...); } template <typename T, typename Compare = less<T>> T &chmin(T &l, T r, Compare &&f = less<T>()) { return l = min(l, r, f); } template <typename T, typename Compare = less<T>> T &chmax(T &l, T r, Compare &&f = less<T>()) { return l = max(l, r, f); } int main() { string s; cin >> s; auto pow = [](int64_t x, int n) { int64_t ans = 1; while (n--) { ans *= x; } return ans; }; int p = distance(begin(s), find(begin(s), end(s), '.')); if (p == size(s)) { cout << s << "/1" << endl; return 0; } int64_t a = stoll(s.substr(0, p) + s.substr(p + 1)); int64_t b = pow(10, size(s) - p - 1); int64_t g = gcd(a, b); a /= g; b /= g; cout << a << "/" << b << endl; }