結果
問題 | No.1464 Number Conversion |
ユーザー | 👑 Nachia |
提出日時 | 2021-04-02 21:27:14 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 7 ms / 2,000 ms |
コード長 | 372 bytes |
コンパイル時間 | 2,743 ms |
コンパイル使用メモリ | 191,028 KB |
最終ジャッジ日時 | 2025-01-20 08:16:47 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 29 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using ull=unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) ull GCD(ull a,ull b){ return b?GCD(b,a%b):a; } int main(){ double Xf; cin>>Xf; ull a=Xf*1.0e8+0.5, b=100000000; if(a==0) cout<<"0/1\n"; else{ ull g=GCD(a,b); a/=g; b/=g; cout<<a<<"/"<<b<<"\n"; } return 0; }