結果

問題 No.1464 Number Conversion
ユーザー yansi819yansi819
提出日時 2024-04-29 09:02:17
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 467 bytes
コンパイル時間 4,089 ms
コンパイル使用メモリ 262,736 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 11:08:18
合計ジャッジ時間 5,241 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using mint = modint998244353;

int main() {
  double x; cin >> x;
  string s = to_string(x);
  int pos = s.find('.');
  int d = 0;
  if (pos == -1) d = 0;
  else d = s.size() - pos - 1;
  ll a = pow(10, d);
  double y = x * pow(10, d);
  ll b = ll(y);
  ll g = gcd(a, b);
  cout << b / g << '/' << a / g << endl; 
  return 0;
}
0