結果

問題 No.1464 Number Conversion
ユーザー Noboru2020
提出日時 2021-04-02 22:20:58
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 554 bytes
コンパイル時間 1,768 ms
コンパイル使用メモリ 168,780 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-23 19:54:12
合計ジャッジ時間 3,360 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27 RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
//最大公約数
long long GCD(long long a, long long b){
   if (a%b == 0){
     return(b);
   }
   else{
     return(GCD(b, a%b));
   }
}
signed main(){
    string s;cin>>s;
    string t="";
    int bunbo=1;
    bool bo=false;
    for(char c:s){
        if(c!='.'){
            t+=c;
        }
        if(c=='.'){
            bo=true;
        }
        else if(bo){
            bunbo*=10;
        }
    }
    int d=stoll(t);
    int e=GCD(bunbo,d);
    cout<<d/e<<"/"<<bunbo/e<<endl;
}
0