結果

問題 No.1464 Number Conversion
ユーザー Noboru2020Noboru2020
提出日時 2021-04-02 21:55:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 564 bytes
コンパイル時間 1,539 ms
コンパイル使用メモリ 169,712 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-06 06:45:47
合計ジャッジ時間 2,959 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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(){
    long double a;
    cin>>a;
    string s=to_string(a);
    string t="";
    int bunbo=1;
    bool bo=false;
    for(char c:s){
        if(c=='.'){
            bo=true;
        }
        else if(bo){
            bunbo*=10;
        }
    }
    long double b=a*bunbo;
    int d=b;
    int e=GCD(bunbo,d);
    cout<<d/e<<"/"<<bunbo/e<<endl;
}
0